:root{
  --ink:#101820;
  --paper:#FAFBFC;
  --mint:#E9F5F0;
  --blue:#2F6FED;
  --blue-deep:#163B85;
  --line: rgba(16,24,32,0.10);
  --line-light: rgba(255,255,255,0.22);
  --maxw: 1240px;
  --ease: cubic-bezier(.65,0,.35,1);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter', sans-serif;
  color:var(--ink);
  background:var(--paper);
  font-weight:400;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit;}
ul{list-style:none;}

h1,h2,h3,.display{
  font-family:'Manrope', sans-serif;
  font-weight:800;
  letter-spacing:-0.01em;
  line-height:1.1;
}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 40px;}
.eyebrow{
  font-size:12px;
  letter-spacing:0.28em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--blue);
  display:flex;
  align-items:center;
  gap:12px;
}
.eyebrow::before{
  content:"";
  width:26px;height:2px;
  background:var(--blue);
  display:inline-block;
  border-radius:2px;
}

/* ---------- Signature: smile-curve divider ---------- */
.arc-divider{
  width:64px;
  height:20px;
  margin-top:18px;
}
.arc-divider path{
  fill:none;
  stroke:var(--blue);
  stroke-width:3;
  stroke-linecap:round;
}
.arc-divider.center{margin-left:auto;margin-right:auto;}

/* ---------- Header ---------- */
header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:50;
  transition:background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom:1px solid transparent;
}
header.solid{
  background:rgba(250,251,252,0.92);
  backdrop-filter:blur(10px);
  border-bottom-color:var(--line);
}
header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:84px;
}
.logo{
  font-family:'Manrope', sans-serif;
  font-weight:800;
  font-size:22px;
  letter-spacing:0.02em;
  display:flex;
  align-items:center;
  gap:8px;
}
.logo .mark{
  width:26px;height:26px;
  display:inline-block;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:36px;
  font-size:14px;
  font-weight:600;
}
.nav-links a{opacity:0.75; transition:opacity 0.2s ease;}
.nav-links a:hover{opacity:1;}
.nav-right{display:flex;align-items:center;gap:20px;}

.lang-toggle{
  display:flex;
  border:1px solid var(--line);
  border-radius:999px;
  overflow:hidden;
}
.lang-toggle button{
  padding:6px 12px;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.05em;
  color:var(--ink);
  opacity:0.5;
}
.lang-toggle button.active{opacity:1; background:var(--mint);}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 26px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  transition:transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.2s ease;
}
.btn-solid{
  background:var(--blue);
  color:#fff;
  box-shadow:0 8px 20px rgba(47,111,237,0.28);
}
.btn-solid:hover{background:var(--blue-deep); transform:translateY(-1px);}
.btn-light{
  background:transparent;
  color:var(--ink);
  border:1.5px solid var(--line);
}
.btn-light:hover{border-color:var(--blue); color:var(--blue);}

/* ---------- Hero ---------- */
.hero{
  padding:180px 0 100px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.hero-copy h1{font-size:clamp(38px,4.6vw,64px);}
.hero-copy .lead{
  margin-top:22px;
  font-size:18px;
  color:rgba(16,24,32,0.68);
  max-width:46ch;
  line-height:1.7;
}
.hero-actions{
  margin-top:34px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.photo{
  background-size:cover;
  background-position:center;
  background-color:var(--mint);
  position:relative;
}
.photo:not(.has-image)::after{
  content: attr(data-label);
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:16px;
  font-size:11px;
  line-height:1.5;
  color:var(--blue-deep);
  background:repeating-linear-gradient(45deg, rgba(47,111,237,0.05) 0 2px, transparent 2px 14px);
  border:1px dashed rgba(47,111,237,0.35);
}
.hero-photo{
  aspect-ratio:4/3.2;
  border-radius:16px;
  overflow:hidden;
}

/* ---------- Trust bar ---------- */
.trust{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:44px 0;
}
.trust .wrap{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  text-align:center;
}
.trust-num{
  font-family:'Manrope', sans-serif;
  font-weight:800;
  font-size:clamp(28px,3vw,40px);
  color:var(--blue);
}
.trust-label{
  margin-top:6px;
  font-size:13px;
  color:rgba(16,24,32,0.6);
  letter-spacing:0.02em;
}

/* ---------- Section shared ---------- */
section{padding:110px 0;}
section.mint-bg{background:var(--mint);}
.section-head{
  max-width:640px;
  margin:0 auto 56px;
  text-align:center;
}
.section-head h2{font-size:clamp(30px,3.6vw,44px); margin-top:16px;}
.section-head .arc-divider{margin-top:16px;}

/* ---------- Services ---------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
}
.service-card{
  background:var(--paper);
  padding:36px 30px;
  transition:background 0.25s ease;
}
.service-card:hover{background:var(--mint);}
.service-num{
  font-family:'Manrope', sans-serif;
  font-weight:800;
  font-size:13px;
  color:var(--blue);
  letter-spacing:0.05em;
}
.service-card h3{
  font-size:19px;
  margin-top:16px;
  font-weight:700;
}
.service-card p{
  margin-top:10px;
  font-size:14px;
  color:rgba(16,24,32,0.62);
  line-height:1.6;
}

/* ---------- Story / Approach ---------- */
.approach{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
.approach-photo{
  aspect-ratio:3/4;
  border-radius:16px;
  overflow:hidden;
}
.approach-copy h2{font-size:clamp(28px,3.4vw,38px); margin-top:16px;}
.approach-copy p{
  margin-top:22px;
  font-size:16px;
  color:rgba(16,24,32,0.68);
  max-width:48ch;
}
.reveal{opacity:0; transform:translateY(28px); transition:opacity 0.7s var(--ease), transform 0.7s var(--ease);}
.reveal.in{opacity:1; transform:none;}

/* ---------- Team ---------- */
.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.team-card{text-align:center;}
.team-photo{
  aspect-ratio:4/5;
  border-radius:14px;
  overflow:hidden;
  margin-bottom:18px;
}
.team-card h3{font-size:18px; font-weight:700;}
.team-card .role{
  margin-top:4px;
  font-size:13px;
  color:var(--blue);
  font-weight:600;
}

/* ---------- Quote ---------- */
.quote-section{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  margin:0 40px;
  padding:90px 60px;
  display:flex;
  align-items:flex-end;
}
.quote-section .photo{position:absolute; inset:0;}
.quote-section::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(16,24,32,0.82), rgba(16,24,32,0.35));
  z-index:1;
}
.quote-content{position:relative; z-index:2; max-width:640px; color:#fff;}
.quote-content .eyebrow{color:#BFD4FF;}
.quote-content .eyebrow::before{background:#BFD4FF;}
blockquote{
  font-family:'Manrope', sans-serif;
  font-weight:700;
  font-size:clamp(22px,2.6vw,32px);
  margin-top:20px;
  line-height:1.4;
}
.quote-attr{
  margin-top:18px;
  font-size:14px;
  opacity:0.8;
}

/* ---------- Gallery ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:repeat(2,180px);
  gap:14px;
}
.gallery-grid .photo{border-radius:12px; overflow:hidden;}
.g1{grid-column:1/3; grid-row:1/3;}
.g2{grid-column:3/5; grid-row:1/2;}
.g3{grid-column:3/4; grid-row:2/3;}
.g4{grid-column:4/5; grid-row:2/3;}

/* ---------- Final CTA ---------- */
.final-cta{
  text-align:center;
  padding:120px 0;
}
.final-cta h2{font-size:clamp(32px,4.2vw,52px);}
.final-cta .arc-divider{margin-top:20px;}
.final-cta .btn{margin-top:34px;}

/* ---------- Footer ---------- */
footer{
  background:var(--ink);
  color:rgba(250,251,252,0.7);
  padding:70px 0 34px;
}
footer .foot-top{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
  padding-bottom:44px;
  border-bottom:1px solid var(--line-light);
}
footer .logo{color:#fff;}
footer .foot-col h4{
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:rgba(250,251,252,0.5);
  margin-bottom:14px;
}
footer .foot-col a, footer .foot-col p{
  display:block;
  font-size:14px;
  margin-bottom:8px;
  color:rgba(250,251,252,0.85);
}
footer .foot-bottom{
  padding-top:28px;
  font-size:13px;
  color:rgba(250,251,252,0.45);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}

/* ---------- Booking drawer ---------- */
.drawer-overlay{
  position:fixed; inset:0;
  background:rgba(16,24,32,0.5);
  opacity:0; pointer-events:none;
  transition:opacity 0.3s ease;
  z-index:98;
}
.drawer-overlay.open{opacity:1; pointer-events:auto;}
.drawer{
  position:fixed; top:0; right:0; bottom:0;
  width:min(420px, 100%);
  background:var(--paper);
  z-index:99;
  transform:translateX(100%);
  transition:transform 0.4s var(--ease);
  display:flex;
  flex-direction:column;
}
.drawer.open{transform:translateX(0);}
.drawer-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:26px 28px;
  border-bottom:1px solid var(--line);
}
.drawer-head h3{font-size:20px;}
.drawer-close{
  width:34px;height:34px;
  border:1px solid var(--line);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  transition:background 0.2s ease, color 0.2s ease;
}
.drawer-close:hover{background:var(--ink); color:#fff; border-color:var(--ink);}
.drawer-body{
  padding:28px;
  overflow-y:auto;
  flex:1;
}
.field{margin-bottom:18px;}
.field label{
  display:block;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:rgba(16,24,32,0.55);
  margin-bottom:8px;
}
.field input, .field select{
  width:100%;
  padding:12px 14px;
  border:1.5px solid var(--line);
  border-radius:10px;
  font-family:inherit;
  font-size:14px;
  color:var(--ink);
  background:#fff;
}
.field input:focus, .field select:focus{outline:none; border-color:var(--blue);}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
.drawer-submit{
  width:100%;
  padding:15px;
  background:var(--blue);
  color:#fff;
  border-radius:10px;
  font-weight:700;
  font-size:15px;
  margin-top:6px;
  transition:background 0.2s ease;
}
.drawer-submit:hover{background:var(--blue-deep);}
.drawer-note{
  margin-top:14px;
  font-size:12px;
  color:rgba(16,24,32,0.45);
  line-height:1.6;
}
.confirm-state{display:none; text-align:center; padding:40px 10px;}
.confirm-state.show{display:block;}
.confirm-state .arc-divider{margin-bottom:20px;}
.confirm-state h3{font-size:22px;}
.confirm-state p{margin-top:10px; font-size:14px; color:rgba(16,24,32,0.65);}
.confirm-state button{
  margin-top:24px;
  font-size:13px;
  font-weight:700;
  color:var(--blue);
  text-decoration:underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .nav-links{display:none;}
  .hero{grid-template-columns:1fr; padding-top:150px;}
  .services-grid{grid-template-columns:1fr;}
  .approach{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr;}
  .trust .wrap{grid-template-columns:1fr; gap:28px;}
  .gallery-grid{grid-template-columns:repeat(2,1fr); grid-template-rows:repeat(4,160px);}
  .g1{grid-column:1/3; grid-row:1/2;}
  .g2{grid-column:1/2; grid-row:2/3;}
  .g3{grid-column:2/3; grid-row:2/3;}
  .g4{grid-column:1/3; grid-row:3/4;}
  .quote-section{margin:0 20px; padding:60px 30px;}
}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important;}
}
