:root {
  --ink: #0d2f3b;
  --ink-2: #173f4c;
  --sea: #0f6673;
  --sea-soft: #dceff0;
  --sun: #f2b63d;
  --sun-soft: #fff1ca;
  --paper: #f7f6f1;
  --white: #ffffff;
  --muted: #64747a;
  --line: rgba(13, 47, 59, 0.14);
  --shadow: 0 24px 70px rgba(13, 47, 59, 0.14);
  --shadow-soft: 0 12px 36px rgba(13, 47, 59, 0.10);
  --radius-sm: 10px;
  --radius-md: 24px;
  --radius-lg: 44px;
  --max: 1180px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 14px;
  top: 10px;
  z-index: 2000;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  background: var(--paper);
  pointer-events: none;
  animation: loaderDismiss .42s ease 1.05s forwards;
}
.loader-mark {
  width: 70px;
  height: 70px;
  border: 2px solid var(--line);
  border-top-color: var(--sea);
  border-right-color: var(--sun);
  border-radius: 50%;
  animation: loaderSpin .78s linear infinite;
}
body.is-loaded .site-loader { opacity: 0; visibility: hidden; }
@keyframes loaderSpin { to { transform: rotate(360deg); } }
@keyframes loaderDismiss { to { opacity: 0; visibility: hidden; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(13, 47, 59, .08);
  background: rgba(247, 246, 241, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}
.brand-logo {
  width: 124px;
  height: 58px;
  object-fit: contain;
}
.menu-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(13,47,59,.06);
}
.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  transition: transform .22s ease, opacity .22s ease;
}
.menu-icon { position: relative; }
.menu-icon::before,
.menu-icon::after { content: ""; position: absolute; left: 0; }
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { transform: translateY(-6px) rotate(-45deg); }

.site-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 16px;
  left: 16px;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
}
.site-nav.is-open { display: block; }
.nav-list {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: .94rem;
  font-weight: 650;
  text-decoration: none;
}
.nav-link:hover,
.nav-link[aria-current="page"] { background: var(--sea-soft); color: var(--ink); }

main { overflow: clip; }
.section {
  position: relative;
  padding: 84px 0;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.shell { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}
.section-title {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2rem, 9vw, 4.8rem);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 780;
}
.section-title::after {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sun), var(--sea));
}

.hero {
  padding: 34px 0 76px;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
}
.hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 3; }
.hero-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  padding: 12px 18px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 18px 50px rgba(13,47,59,.08);
}
.hero-logo {
  width: 100%;
  height: 180px;
  object-fit: contain;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 12vw, 6.6rem);
  line-height: .88;
  letter-spacing: -.07em;
  overflow-wrap: anywhere;
}
.hero-email {
  display: inline-flex;
  margin-top: 22px;
  color: var(--sea);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(13,47,59,.15);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 30px rgba(13,47,59,.2); }
.btn-secondary { background: transparent; color: var(--ink); box-shadow: none; }
.btn-secondary:hover { background: var(--white); }
.ripple-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple .55s ease-out forwards;
  pointer-events: none;
  z-index: -1;
}
.btn-secondary .ripple-dot { background: rgba(15,102,115,.18); }
@keyframes ripple { to { transform: translate(-50%, -50%) scale(16); opacity: 0; } }

.hero-art {
  position: relative;
  min-height: 580px;
}
.hero-panel {
  position: absolute;
  inset: 0 8% 0 12%;
  border-radius: 160px 24px 160px 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sea-soft);
}
.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.hero-panel:hover img { transform: scale(1.035); }
.hero-sun {
  position: absolute;
  width: 170px;
  height: 170px;
  right: 0;
  top: 6%;
  border-radius: 50%;
  background: var(--sun);
  mix-blend-mode: multiply;
  opacity: .9;
  animation: floatY 5.5s ease-in-out infinite alternate;
}
.hero-waterline {
  position: absolute;
  left: 2%;
  right: 0;
  bottom: 10%;
  height: 54px;
  border: 3px solid rgba(15,102,115,.24);
  border-left: 0;
  border-right: 0;
  border-radius: 50%;
  transform: rotate(-3deg);
}
@keyframes floatY { to { transform: translateY(18px); } }

.visual-frame {
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.visual-frame:hover img { transform: scale(1.04); filter: saturate(1.06); }

.about-layout {
  display: grid;
  gap: 20px;
}
.about-main {
  min-height: 460px;
  border-radius: 14px 90px 14px 90px;
}
.about-accent {
  min-height: 180px;
  display: grid;
  place-items: center;
  border-radius: 90px 14px 90px 14px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 24%, rgba(242,182,61,.9) 0 12%, transparent 12.5%),
    radial-gradient(circle at 23% 70%, rgba(15,102,115,.18) 0 18%, transparent 18.5%),
    linear-gradient(135deg, var(--white), var(--sea-soft));
}
.about-accent::before,
.about-accent::after {
  content: "";
  width: 38%;
  height: 4px;
  border-radius: 999px;
  background: var(--sea);
  box-shadow: 0 18px 0 var(--sun), 0 -18px 0 rgba(13,47,59,.18);
}
.about-accent::after { transform: rotate(90deg) scale(.55); }

.services-section { background: var(--ink); color: var(--white); }
.services-section .section-title::after { background: linear-gradient(90deg, var(--sun), #65c7c9); }
.services-gallery {
  display: grid;
  gap: 18px;
  align-items: stretch;
}
.service-portrait {
  min-height: 520px;
  border-radius: 100px 18px 18px 18px;
}
.service-landscape {
  min-height: 360px;
  border-radius: 18px 18px 100px 18px;
}
.services-note {
  position: absolute;
  inset: auto 0 0 auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: inset 0 0 0 14px rgba(255,255,255,.18);
}

.features-layout {
  display: grid;
  gap: 30px;
  align-items: center;
}
.feature-media {
  min-height: 420px;
  border-radius: 28px 120px 28px 28px;
}
.feature-geometry {
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 120px 28px 28px 28px;
  background:
    linear-gradient(120deg, transparent 45%, rgba(15,102,115,.12) 45% 56%, transparent 56%),
    linear-gradient(35deg, rgba(242,182,61,.22), transparent 58%),
    var(--white);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.feature-geometry::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 24px solid var(--sun-soft);
  top: 26px;
  right: -38px;
}
.feature-geometry::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 5px;
  left: 8%;
  bottom: 18%;
  background: var(--sea);
  border-radius: 999px;
  box-shadow: 0 20px 0 rgba(15,102,115,.16), 0 -20px 0 var(--sun);
}

.why-section { padding-top: 20px; }
.why-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
}
.why-image {
  width: min(78%, 760px);
  height: 620px;
  margin-left: auto;
  border-radius: 18px 18px 160px 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.why-image:hover img { transform: scale(1.035); }
.why-title-card {
  position: absolute;
  left: 0;
  top: 16%;
  width: min(78%, 610px);
  padding: 28px;
  border-radius: 18px 70px 18px 18px;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow);
}
.why-title-card .section-title { font-size: clamp(2rem, 8vw, 4.3rem); }

.contact-section {
  padding-bottom: 96px;
}
.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 24px;
  padding: 34px;
  border-radius: 24px 110px 24px 24px;
  background: var(--sun-soft);
  box-shadow: var(--shadow-soft);
}
.contact-panel::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 42px solid rgba(15,102,115,.10);
  right: -90px;
  top: -90px;
}
.contact-name {
  margin: 0;
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
  overflow-wrap: anywhere;
}
.contact-email {
  display: inline-block;
  max-width: 100%;
  color: var(--sea);
  font-size: clamp(1rem, 4.2vw, 1.35rem);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-underline-offset: 5px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 44px 0;
}
.footer-grid { display: grid; gap: 28px; }
.footer-brand { display: grid; gap: 12px; }
.footer-logo {
  width: 150px;
  height: 82px;
  object-fit: contain;
  background: var(--white);
  border-radius: 10px;
}
.footer-name { margin: 0; font-weight: 800; overflow-wrap: anywhere; }
.footer-email { color: #bfe8ea; overflow-wrap: anywhere; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-nav a { text-decoration: none; color: #e8f1f2; }
.footer-nav a:hover { text-decoration: underline; text-underline-offset: 4px; }

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--sea);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(13,47,59,.25);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.scroll-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top svg { width: 22px; height: 22px; }

/* Content is always visible. JS only adds a small motion refinement. */
.motion-ready .reveal { transform: translateY(14px); transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.motion-ready .reveal.is-visible { transform: none; }

/* Privacy Policy */
.policy-page { background: #f3f6f5; }
.policy-hero {
  padding: 54px 0 38px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 18%, rgba(242,182,61,.24), transparent 28%),
    linear-gradient(135deg, #f9faf7, #eaf3f2);
}
.policy-hero-inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 24px;
  align-items: center;
}
.policy-hero-logo {
  width: min(300px, 70vw);
  height: 150px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.policy-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.15rem, 8vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.policy-effective { margin: 0; font-weight: 750; color: var(--sea); }
.policy-wrap {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 96px;
}
.policy-article {
  display: grid;
  gap: 18px;
  /* Never hide or animate this legal article. */
}
.policy-section {
  scroll-margin-top: calc(var(--header-h) + 18px);
  padding: 26px 0 32px;
  border-bottom: 1px solid var(--line);
}
.policy-section:last-child { border-bottom: 0; }
.policy-section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 4vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -.025em;
}
.policy-section p { margin: 0 0 14px; max-width: 78ch; }
.policy-section ul { margin: 12px 0 16px; padding-left: 24px; }
.policy-section li { margin: 8px 0; }
.policy-section a { color: var(--sea); font-weight: 700; overflow-wrap: anywhere; }
.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
  color: var(--sea);
  text-decoration: none;
}
.policy-back:hover { text-decoration: underline; text-underline-offset: 4px; }

@media (min-width: 720px) {
  .shell, .header-inner { width: min(var(--max), calc(100% - 56px)); }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 48px; }
  .hero-art { min-height: 680px; }
  .about-layout { grid-template-columns: 1.4fr .6fr; }
  .about-accent { min-height: 460px; }
  .services-gallery { grid-template-columns: .82fr 1.18fr; }
  .service-portrait { min-height: 610px; }
  .service-landscape { min-height: 610px; }
  .features-layout { grid-template-columns: 1.15fr .85fr; }
  .contact-panel { grid-template-columns: 1fr auto; align-items: center; padding: 48px; }
  .footer-grid { grid-template-columns: 1fr auto; align-items: end; }
  .policy-hero-inner { grid-template-columns: 270px 1fr; }
}

@media (min-width: 1020px) {
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    display: block !important;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-list { display: flex; align-items: center; gap: 3px; }
  .nav-link { padding: 9px 10px; font-size: .86rem; }
  .section { padding: 118px 0; }
  .hero { padding: 54px 0 92px; }
  .hero-panel { inset: 0 4% 0 16%; }
  .about-main { min-height: 620px; }
  .features-layout { gap: 60px; }
  .feature-media { min-height: 560px; }
}

@media (max-width: 719px) {
  .hero-logo { height: 140px; }
  .hero-art { min-height: 500px; }
  .hero-panel { inset: 0 3% 0 8%; border-radius: 100px 18px 100px 18px; }
  .hero-sun { width: 120px; height: 120px; }
  .why-stage { min-height: 560px; }
  .why-image { width: 88%; height: 520px; }
  .why-title-card { top: 9%; width: 84%; padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .site-loader { display: none !important; }
}
