@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --ink: #071013;
  --deep: #0b191d;
  --ocean: #12383e;
  --ocean-light: #1c5054;
  --sand: #d6cdbc;
  --cream: #ede9e1;
  --mist: #a5aca5;
  --line: rgba(237, 233, 225, .18);
  --line-dark: rgba(7, 16, 19, .2);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --gutter: clamp(24px, 6vw, 88px);
  --space: clamp(72px, 12vw, 180px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  color: var(--cream);
  background: var(--ink);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; min-width: 320px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
figure, h1, h2, h3, p, dl, dd { margin: 0; }

/* Shared language */
.section-dark, .section-ink, .section-sand, .section-ocean { position: relative; overflow: hidden; }
.section-dark { background: var(--deep); color: var(--cream); }
.section-ink { background: var(--ink); color: var(--cream); }
.section-sand { background: var(--sand); color: var(--ink); }
.section-ocean { background: var(--ocean); color: var(--cream); }
.section-index, .eyebrow, .header-link, .scroll-cue, figcaption, .price-label, dt, .footer-bottom, .experience-number { font-size: 10px; letter-spacing: .18em; line-height: 1.4; text-transform: uppercase; }
.section-index { color: var(--mist); }
.section-index span { margin: 0 8px; color: rgba(237, 233, 225, .35); }
.section-sand .section-index, .section-sand .eyebrow { color: #66706b; }
.eyebrow { color: #8c9891; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: .94; letter-spacing: -.045em; }
h1 em, h2 em { font-style: italic; font-weight: 400; }
h2 { font-size: clamp(48px, 11vw, 132px); }
.body-copy, .lead { font-size: clamp(15px, 1.5vw, 19px); line-height: 1.55; }

/* Header */
.site-header { align-items: center; display: flex; justify-content: space-between; left: 0; padding: 24px var(--gutter); position: absolute; right: 0; top: 0; z-index: 3; }
.wordmark { font-size: 11px; font-weight: 500; letter-spacing: .2em; }
.wordmark span { color: #87a59e; }
.header-link { border-bottom: 1px solid rgba(237, 233, 225, .38); padding-bottom: 7px; transition: border-color .3s ease; }
.header-link span, .button span { font-size: 15px; letter-spacing: 0; margin-left: 10px; }
.header-link:hover { border-color: var(--cream); }

/* Hero */
.hero { min-height: 100svh; isolation: isolate; overflow: hidden; position: relative; }
.hero-image { height: 100%; inset: 0; object-fit: cover; object-position: center top; position: absolute; animation: slowZoom 18s ease-out both; z-index: -2; }
.hero-shade { background: linear-gradient(180deg, rgba(3, 10, 11, .35) 0%, rgba(3, 10, 11, .08) 30%, rgba(3, 10, 11, .82) 100%); inset: 0; position: absolute; z-index: -1; }
.hero-content { bottom: clamp(112px, 15vh, 180px); left: var(--gutter); position: absolute; }
.hero-content .eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(82px, 23vw, 290px); letter-spacing: -.07em; }
.hero-note { color: #d4d2c6; font-size: 12px; letter-spacing: .12em; margin-top: 28px; text-transform: uppercase; }
.scroll-cue { align-items: center; bottom: 28px; color: #cad0c7; display: flex; gap: 13px; position: absolute; right: var(--gutter); writing-mode: vertical-rl; }
.scroll-cue span { background: #cad0c7; display: block; height: 38px; opacity: .7; width: 1px; }

/* Introduction */
.introduction { padding: var(--space) var(--gutter); }
.intro-grid { align-items: center; display: grid; gap: 60px; margin-top: 58px; }
.intro-copy h2 { font-size: clamp(64px, 16vw, 180px); margin-top: 28px; }
.lead { color: var(--mist); margin-top: 34px; }
.portrait-frame { margin: 0 auto; max-width: 430px; width: 78%; }
.portrait-frame img { aspect-ratio: .72; border-radius: 14px; box-shadow: 0 24px 60px -20px rgba(0,0,0,.55); object-fit: cover; object-position: center; }
figcaption { color: var(--mist); display: flex; gap: 8px; justify-content: flex-end; margin-top: 14px; }

/* Gallery */
.gallery { padding: var(--space) var(--gutter) calc(var(--space) * 1.35); }
.gallery-heading { margin-bottom: 64px; }
.gallery-heading h2 { margin-top: 32px; }
.gallery-grid { display: grid; gap: 68px 20px; grid-template-columns: 1fr 1fr; }
.gallery-item img { border-radius: 16px; box-shadow: 0 20px 50px -18px rgba(0,0,0,.45); object-fit: cover; transition: transform 1.2s var(--ease), filter 1.2s var(--ease), box-shadow 1.2s var(--ease); }
.gallery-item:hover img { box-shadow: 0 28px 70px -18px rgba(0,0,0,.6); filter: brightness(1.06); transform: scale(1.025); }
.gallery-item--wide { grid-column: 1 / -1; }
.gallery-item--wide img { aspect-ratio: 1.3; }
.gallery-item--tall { grid-column: 1; margin-top: 12px; }
.gallery-item--tall img { aspect-ratio: .68; }
.gallery-item--small { align-self: end; grid-column: 2; margin-bottom: -46px; }
.gallery-item--small img { aspect-ratio: .72; }
.gallery-item--mid { grid-column: 1 / -1; margin-top: 18px; }
.gallery-item--mid img { aspect-ratio: 1.35; }
.gallery-item--portrait { grid-column: 1; }
.gallery-item--portrait img { aspect-ratio: .7; }
.gallery-item--offset { grid-column: 2; margin-top: -48px; }
.gallery-item--offset img { aspect-ratio: .7; }
.gallery-item--last { grid-column: 1 / -1; margin-top: 22px; }
.gallery-item--last img { aspect-ratio: 1.45; }
.gallery-item figcaption { border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.gallery-item figcaption span { margin-right: auto; }

/* About */
.about { padding: var(--space) var(--gutter); }
.about-grid { display: grid; gap: 54px; margin-top: 58px; }
.about-copy h2 { font-size: clamp(48px, 11vw, 124px); margin: 26px 0 34px; }
.about-copy .body-copy { color: #46544d; max-width: 360px; }
.about-image { margin-left: auto; max-width: 390px; width: 80%; }
.about-image img { aspect-ratio: .78; border-radius: 14px; box-shadow: 0 24px 60px -20px rgba(0,0,0,.4); object-fit: cover; }

/* Experiences */
.experiences, .information, .service { padding: var(--space) var(--gutter); }
.section-title-row { margin: 60px 0 70px; }
.section-title-row h2 { margin-top: 24px; }
.experience-list { border-top: 1px solid var(--line); }
.experience-row { align-items: center; border-bottom: 1px solid var(--line); display: grid; gap: 20px; grid-template-columns: 35px 1fr 20px; min-height: 134px; }
.experience-row h3 { font-family: var(--serif); font-size: clamp(21px, 3vw, 32px); font-weight: 400; letter-spacing: -.02em; }
.experience-row p { color: var(--mist); font-size: 13px; margin-top: 8px; }
.experience-number { color: #81958d; align-self: start; padding-top: 27px; }
.arrow { color: #91a49c; font-size: 18px; transition: transform .3s ease; }
.experience-row:hover .arrow { transform: translate(3px, -3px); }

/* Information */
.info-heading { margin: 56px 0 70px; }
.info-heading h2 { margin-top: 25px; }
.price-list { border-top: 1px solid var(--line); }
.price-row { align-items: center; border-bottom: 1px solid var(--line); display: flex; gap: 20px; justify-content: space-between; min-height: 116px; }
.price-row p { color: var(--mist); font-size: 13px; margin-top: 9px; }
.price-label { color: var(--cream); display: block; letter-spacing: .08em; }
.price-row strong { color: #b6c3b9; font-size: 11px; font-weight: 400; letter-spacing: .08em; text-align: right; text-transform: uppercase; }

/* Service */
.service-grid { display: grid; gap: 64px; margin-top: 55px; }
.service h2 { font-size: clamp(48px, 11vw, 120px); margin-top: 24px; }
.details-list { border-top: 1px solid var(--line-dark); }
.details-list > div { border-bottom: 1px solid var(--line-dark); display: grid; gap: 20px; grid-template-columns: 1fr 1.15fr; padding: 25px 0; }
dt { color: #596961; }
dd { color: #24352e; font-size: 14px; line-height: 1.5; }

/* Availability */
.availability { min-height: 88svh; padding: var(--space) var(--gutter); }
.availability-copy { margin-top: 58px; max-width: 600px; }
.availability h2 { color: #e5e1d6; font-size: clamp(64px, 14vw, 170px); margin: 25px 0 34px; }
.availability-copy > p:not(.eyebrow) { color: #b1c1ba; font-size: 15px; line-height: 1.55; max-width: 300px; }
.button { align-items: center; display: inline-flex; font-size: 11px; justify-content: space-between; letter-spacing: .12em; min-height: 54px; padding: 0 20px; text-transform: uppercase; transition: background .35s ease, color .35s ease, border-color .35s ease; }
.button-light { background: var(--cream); color: var(--ink); margin-top: 38px; min-width: min(100%, 310px); }
.button-light:hover { background: #fff; }
.availability-mark { bottom: -80px; color: rgba(237, 233, 225, .07); font-family: var(--serif); font-size: 320px; left: 35%; line-height: 1; position: absolute; transform: rotate(-12deg); }
.availability-mark span { font-style: italic; }

/* Contact and footer */
.contact { min-height: 86svh; padding: var(--space) var(--gutter) 80px; }
.contact-content { margin-top: 96px; }
.contact h2 { font-size: clamp(70px, 17vw, 190px); margin: 26px 0 35px; }
.contact-content > p:not(.eyebrow) { color: var(--mist); font-size: 15px; }
.button-outline { border: 1px solid rgba(237, 233, 225, .45); color: var(--cream); margin-top: 42px; min-width: min(100%, 280px); }
.button-outline:hover { background: var(--cream); color: var(--ink); }
.site-footer { background: #050b0d; color: var(--cream); padding: 45px var(--gutter) 28px; }
.footer-top { align-items: flex-start; display: flex; justify-content: space-between; }
.footer-top p { color: var(--mist); font-size: 11px; line-height: 1.5; text-align: right; }
.footer-bottom { border-top: 1px solid var(--line); color: #79857e; display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; margin-top: 72px; padding-top: 18px; }
.footer-bottom a { color: var(--cream); }

/* WhatsApp floating button */
.whatsapp-float { align-items: center; background: #25D366; border-radius: 50%; bottom: 24px; box-shadow: 0 8px 24px -4px rgba(0,0,0,.4); color: #fff; display: flex; height: 56px; justify-content: center; position: fixed; right: 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); width: 56px; z-index: 50; }
.whatsapp-float:hover { box-shadow: 0 12px 32px -4px rgba(0,0,0,.5); transform: scale(1.08); }
.whatsapp-float::after { animation: waPulse 2.5s ease-out infinite; border: 2px solid #25D366; border-radius: 50%; content: ""; inset: 0; position: absolute; }
@keyframes waPulse { 0% { opacity: .6; transform: scale(1); } 100% { opacity: 0; transform: scale(1.6); } }
@media (max-width: 760px) { .whatsapp-float { bottom: 18px; height: 50px; right: 18px; width: 50px; } }

/* Motion */
.reveal { animation: reveal linear both; animation-timeline: view(); animation-range: entry 0% cover 28%; }
@keyframes slowZoom { from { transform: scale(1.04); } to { transform: scale(1); } }
@keyframes reveal { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; } }

/* Editorial desktop composition */
@media (min-width: 760px) {
  .site-header { padding-top: 32px; }
  .hero-content { bottom: 14vh; }
  .scroll-cue { bottom: 44px; right: 50%; transform: translateX(50%); writing-mode: horizontal-tb; }
  .scroll-cue span { height: 1px; width: 42px; }
  .intro-grid { grid-template-columns: 1fr .75fr; margin-top: 100px; }
  .portrait-frame { margin-right: 10%; width: 76%; }
  .gallery-heading { display: flex; justify-content: space-between; }
  .gallery-heading h2 { margin-right: 12%; }
  .gallery-grid { gap: 100px 5vw; grid-template-columns: 1.15fr .75fr .75fr; margin: 0 auto; max-width: 1260px; }
  .gallery-item--wide { grid-column: 1 / 3; margin-top: 12%; }
  .gallery-item--tall { grid-column: 3; margin-top: 0; }
  .gallery-item--small { grid-column: 2; margin: -32% 0 0; }
  .gallery-item--wide img { aspect-ratio: 1.4; }
  .gallery-item--tall img { aspect-ratio: .7; }
  .gallery-item--small img { aspect-ratio: .8; }
  .about-grid { align-items: center; grid-template-columns: 1.1fr .8fr; margin-top: 100px; }
  .about-image { margin-right: 15%; width: 80%; }
  .section-title-row, .info-heading { margin-top: 100px; }
  .experience-row { grid-template-columns: 90px 1fr 30px; min-height: 170px; }
  .service-grid { grid-template-columns: 1fr 1fr; margin-top: 100px; }
  .details-list { margin-top: 10px; }
  .availability-copy { margin: 13vh 0 0 8%; }
  .contact-content { margin-left: 8%; margin-top: 13vh; }
}
@media (min-width: 1100px) { .hero-content { left: 12vw; } .hero h1 { font-size: clamp(130px, 18vw, 280px); } }
