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

:root {
  --ivory: #f7f3eb;
  --paper: #fffdf8;
  --forest: #173b2c;
  --sage: #7c9b72;
  --sage-light: #dfe8d9;
  --terracotta: #a85335;
  --ink: #1f2924;
  --muted: #647069;
  --line: rgba(23, 59, 44, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory); color: var(--ink); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
section[id] { scroll-margin-top: 92px; }

.skip-link {
  position: fixed; z-index: 100; top: 12px; left: 12px; padding: 12px 16px;
  background: var(--forest); color: #fff; transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 38px; padding: 8px clamp(20px, 5vw, 76px); background: var(--forest); color: #fff;
  display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase;
}
.announcement a { color: #e8c4b3; font-weight: 600; }

.site-header {
  height: 94px; padding: 0 clamp(20px, 5vw, 76px); display: flex; align-items: center; gap: 48px;
  background: rgba(247, 243, 235, .94); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.brand { margin-right: auto; }
.brand img { width: 104px; height: 82px; object-fit: contain; }
nav { display: flex; align-items: center; gap: 32px; font-size: 14px; }
nav a { position: relative; }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--terracotta); transition: right .2s; }
nav a:hover::after, nav a:focus-visible::after { right: 0; }
nav a.is-active::after { right: 0; }
nav a.is-active { color: var(--terracotta); }

.button {
  min-height: 52px; padding: 0 24px; display: inline-flex; justify-content: center; align-items: center; background: var(--terracotta);
  color: #fff; border: 1px solid var(--terracotta); font-size: 13px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; transition: transform .2s, background .2s;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); background: #8f432c; }
.button-small { min-height: 44px; padding-inline: 18px; }
.button-outline { background: transparent; color: var(--forest); border-color: rgba(23,59,44,.45); }
.button-outline:hover, .button-outline:focus-visible { background: var(--forest); color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.text-link span { color: var(--terracotta); }
.mobile-menu { display: none; }

.hero { min-height: 700px; display: grid; grid-template-columns: .9fr 1.1fr; background: var(--paper); }
.hero-copy { padding: clamp(64px, 8vw, 128px) clamp(30px, 7vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 20px; color: var(--terracotta); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
h1, h2 { margin: 0; color: var(--forest); font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -.035em; }
h1 { max-width: 640px; font-size: clamp(54px, 6.2vw, 94px); }
h2 { font-size: clamp(42px, 4.2vw, 66px); }
.hero-lede { max-width: 590px; margin: 30px 0 0; color: var(--muted); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.7; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 28px; }
.hero-notes { margin: 70px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: flex; gap: 24px; list-style: none; color: var(--muted); font-size: 12px; }
.hero-notes li::before { content: "•"; color: var(--terracotta); margin-right: 8px; }
.hero-visual { min-height: 700px; position: relative; overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,59,44,.04), transparent 45%); }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; }
.hero-card { position: absolute; z-index: 2; right: 0; bottom: 0; width: min(420px, 72%); padding: 32px 38px; background: var(--forest); color: #fff; }
.hero-card span { display: block; margin-bottom: 8px; color: #d3b2a2; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.hero-card strong { font-family: var(--serif); font-size: 27px; font-weight: 500; }

.section-shell { padding: 110px clamp(20px, 6vw, 96px); }
.intro { padding-block: 54px; background: var(--sage-light); text-align: center; }
.intro p { max-width: 900px; margin: 0 auto; color: var(--forest); font-family: var(--serif); font-size: clamp(26px, 3.2vw, 48px); font-style: italic; line-height: 1.3; }
.section-heading { margin-bottom: 58px; display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 80px; }
.section-heading > p { margin: 0 0 3px; color: var(--muted); font-size: 15px; line-height: 1.75; }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { min-height: 490px; background: var(--ivory); display: grid; grid-template-rows: 265px 1fr; overflow: hidden; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover img { transform: scale(1.035); }
.service-card > div { padding: 25px 27px 28px; position: relative; }
.service-card > div > span { position: absolute; top: 28px; right: 27px; color: var(--terracotta); font-size: 11px; }
.service-card h3 { margin: 0 36px 12px 0; color: var(--forest); font-family: var(--serif); font-size: 29px; font-weight: 500; }
.service-card p { min-height: 66px; margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.service-action { padding: 0; display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; color: var(--forest); font: inherit; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; text-align: left; }
.service-action span { color: var(--terracotta); transition: transform .2s; }
.service-action:hover span, .service-action:focus-visible span { transform: translateX(4px); }
.service-featured { grid-column: span 2; grid-template-columns: 1.15fr .85fr; grid-template-rows: 490px; }
.service-featured > div { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.service-featured h3 { font-size: 40px; }
.service-featured p { max-width: 360px; }

.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 790px; background: var(--forest); color: #fff; }
.about-image { min-height: 720px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-copy { padding: clamp(70px, 8vw, 130px); display: flex; flex-direction: column; justify-content: center; }
.about-copy h2 { color: #fff; }
.about-copy > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.75; }
.about-copy .large-copy { margin-top: 30px; color: #fff !important; font-family: var(--serif); font-size: 24px !important; line-height: 1.45 !important; }
.about-values { margin: 36px 0; border-block: 1px solid rgba(255,255,255,.16); }
.about-values div { padding: 16px 0; display: flex; align-items: center; gap: 22px; border-bottom: 1px solid rgba(255,255,255,.12); }
.about-values div:last-child { border-bottom: 0; }
.about-values strong { color: #d3b2a2; font-size: 11px; letter-spacing: .1em; }
.about-copy .text-link { align-self: flex-start; }

.experience { background: var(--sage-light); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 150px); }
.experience h2 { max-width: 520px; }
.experience ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.experience li { padding: 30px 0; display: grid; grid-template-columns: 58px 1fr; gap: 22px; border-bottom: 1px solid var(--line); }
.experience li > span { color: var(--terracotta); font-size: 12px; }
.experience strong { display: block; margin-bottom: 7px; color: var(--forest); font-family: var(--serif); font-size: 24px; font-weight: 500; }
.experience li p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.gallery { background: var(--paper); }
.gallery-heading { grid-template-columns: 1fr auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 220px 220px clamp(360px, 34vw, 520px); grid-auto-rows: 300px; gap: 16px; }
.gallery-item { min-width: 0; padding: 0; border: 0; background: var(--sage-light); position: relative; overflow: hidden; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .3s; }
.gallery-item > span { position: absolute; right: 14px; bottom: 14px; padding: 9px 12px; background: rgba(16,39,29,.88); color: #fff; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: opacity .2s, transform .2s; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.035); filter: brightness(.88); }
.gallery-item:hover > span, .gallery-item:focus-visible > span { opacity: 1; transform: translateY(0); }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:last-child { grid-column: auto; }

.planner { background: var(--forest); color: #fff; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 150px); }
.planner h2 { color: #fff; }
.planner-intro > p:not(.eyebrow) { max-width: 570px; margin: 28px 0 0; color: rgba(255,255,255,.7); line-height: 1.75; }
.planner-promise { margin-top: 42px; border-top: 1px solid rgba(255,255,255,.16); }
.planner-promise span { color: #d3b2a2; font-size: 11px; letter-spacing: .1em; }
.planner-promise p { margin: 0; }
.planner-promise { display: grid; grid-template-columns: 38px 1fr; align-items: center; }
.planner-promise span, .planner-promise p { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.booking-planner { padding: clamp(28px, 4vw, 54px); background: var(--paper); color: var(--ink); box-shadow: 0 28px 70px rgba(0,0,0,.18); }
.booking-planner label { display: block; margin-bottom: 22px; }
.booking-planner label > span { display: flex; justify-content: space-between; margin-bottom: 9px; color: var(--forest); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.booking-planner label small { color: var(--muted); font-weight: 400; }
.booking-planner input, .booking-planner select, .booking-planner textarea { width: 100%; min-height: 52px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 0; background: #fff; color: var(--ink); font: inherit; font-size: 15px; }
.booking-planner textarea { resize: vertical; }
.booking-planner input:focus, .booking-planner select:focus, .booking-planner textarea:focus { outline: 3px solid rgba(168,83,53,.24); border-color: var(--terracotta); }
.planner-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.planner-submit { width: 100%; cursor: pointer; }
.form-status { min-height: 20px; margin: 12px 0 0; color: var(--terracotta); font-size: 13px; }
.planner-result { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.planner-result > p { margin: 0 0 16px; color: var(--forest); font-family: var(--serif); font-size: 21px; }
.planner-result > div { display: flex; gap: 12px; }
.planner-result small { display: block; margin-top: 14px; color: var(--muted); line-height: 1.5; }

dialog { max-width: none; max-height: none; padding: 0; border: 0; color: var(--ink); }
dialog::backdrop { background: rgba(10,24,18,.78); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; z-index: 3; top: 16px; right: 18px; width: 44px; height: 44px; border: 1px solid rgba(23,59,44,.2); background: var(--paper); color: var(--forest); font-size: 26px; line-height: 1; cursor: pointer; }
.service-dialog { width: min(1040px, calc(100% - 40px)); background: var(--paper); }
.service-dialog-grid { min-height: 580px; display: grid; grid-template-columns: .9fr 1.1fr; }
.service-dialog-grid > img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; }
.service-dialog-grid > div { padding: clamp(54px, 7vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.service-dialog .large-copy { margin: 26px 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.dialog-note { margin: 0 0 30px; padding: 20px 0; border-block: 1px solid var(--line); }
.dialog-note span { color: var(--terracotta); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.dialog-note p { margin: 9px 0 0; color: var(--forest); line-height: 1.65; }
.service-dialog .button { align-self: flex-start; cursor: pointer; }

.lightbox { width: 100vw; height: 100vh; background: rgba(10,24,18,.96); color: #fff; }
.lightbox figure { width: min(1040px, 78vw); height: 100%; margin: auto; padding: 54px 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lightbox figure img { max-width: 100%; max-height: calc(100vh - 130px); object-fit: contain; }
.lightbox figcaption { margin-top: 14px; color: rgba(255,255,255,.75); font-size: 13px; }
.lightbox-close { border-color: rgba(255,255,255,.28); background: transparent; color: #fff; }
.lightbox-arrow { position: absolute; top: 50%; width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; font-size: 22px; cursor: pointer; transform: translateY(-50%); }
.lightbox-previous { left: 28px; }
.lightbox-next { right: 28px; }

.has-js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.has-js .reveal.is-visible { opacity: 1; transform: none; }

.faq { background: var(--ivory); display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 150px); }
.faq-heading > p:last-child { max-width: 420px; margin: 26px 0 0; color: var(--muted); line-height: 1.7; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  padding: 27px 4px; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  color: var(--forest); font-family: var(--serif); font-size: 23px; cursor: pointer; list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--terracotta); font-family: var(--sans); font-size: 26px; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -6px 42px 27px 4px; color: var(--muted); font-size: 15px; line-height: 1.75; }

.contact { background: var(--terracotta); color: #fff; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px, 9vw, 150px); }
.contact .eyebrow { color: #f3d8cc; }
.contact h2 { max-width: 760px; color: #fff; }
.contact-main > p:not(.eyebrow) { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.7; }
.contact-main .booking-note { margin-top: 12px !important; color: #fff !important; font-size: 13px !important; font-weight: 600; }
.contact-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.contact .button { background: var(--forest); border-color: var(--forest); }
.contact .button-outline { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.contact-details { border-top: 1px solid rgba(255,255,255,.28); }
.contact-details > div { padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.28); display: grid; grid-template-columns: 90px 1fr; gap: 20px; }
.contact-details span { color: #f3d8cc; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.contact-details a, .contact-details p { margin: 0; font-family: var(--serif); font-size: 18px; line-height: 1.55; }
.contact-details div:last-child a { display: block; font-family: var(--sans); font-size: 14px; }

footer { padding: 58px clamp(20px, 6vw, 96px) 34px; background: #10271d; color: rgba(255,255,255,.72); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 22px; }
.footer-brand img { width: 86px; filter: brightness(1.2); }
.footer-brand p { font-family: var(--serif); font-size: 21px; font-style: italic; }
.footer-links { display: flex; gap: 28px; font-size: 13px; }
.privacy-note { grid-column: 1 / -1; max-width: 900px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.privacy-note strong { display: block; margin-bottom: 8px; color: #fff; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.privacy-note p { margin: 0; font-size: 12px; line-height: 1.65; }
.copyright { grid-column: 1 / -1; margin: 10px 0 0; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; letter-spacing: .05em; }
.mobile-cta { display: none; }

@media (max-width: 1050px) {
  nav, .site-header > .button-small { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { list-style: none; padding: 12px 16px; border: 1px solid var(--line); cursor: pointer; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu div { position: absolute; right: 0; top: 50px; min-width: 190px; padding: 10px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(23,59,44,.15); }
  .mobile-menu a { display: block; padding: 11px 12px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 630px; }
  .hero-visual { min-height: 560px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-featured { grid-column: span 2; }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 620px; }
  .experience, .planner, .faq, .contact { grid-template-columns: 1fr; }
  .planner { gap: 50px; }
}

@media (max-width: 680px) {
  .announcement { justify-content: center; text-align: center; font-size: 10px; }
  .announcement span { display: none; }
  .site-header { height: 78px; padding-inline: 18px; }
  .brand img { width: 86px; height: 68px; }
  .hero { display: flex; flex-direction: column; }
  .hero-copy { min-height: 550px; padding: 66px 22px 52px; }
  h1 { font-size: clamp(49px, 14.4vw, 68px); }
  h2 { font-size: 44px; }
  .hero-lede { margin-top: 22px; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-notes { margin-top: 44px; flex-direction: column; gap: 10px; }
  .hero-visual { min-height: 430px; }
  .hero-card { width: 86%; padding: 24px; }
  .hero-card strong { font-size: 22px; }
  .section-shell { padding: 76px 20px; }
  .intro { padding-block: 42px; }
  .section-heading { margin-bottom: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-featured { grid-column: auto; min-height: 0; grid-template-columns: 1fr; grid-template-rows: 245px auto; }
  .service-featured > div, .service-card > div { padding: 25px; }
  .service-featured h3, .service-card h3 { font-size: 30px; }
  .service-card p { min-height: 0; }
  .about-image { min-height: 460px; }
  .about-copy { padding: 76px 22px; }
  .experience { gap: 46px; }
  .experience li { grid-template-columns: 42px 1fr; }
  .gallery-heading { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-item:first-child { grid-column: span 2; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: auto; }
  .gallery-item:last-child { grid-column: span 2; }
  .gallery-item > span { opacity: 1; transform: none; }
  .planner-row { grid-template-columns: 1fr; gap: 0; }
  .booking-planner { padding: 28px 20px; }
  .planner-result > div { flex-direction: column; }
  .service-dialog { width: calc(100% - 24px); }
  .service-dialog-grid { min-height: 0; grid-template-columns: 1fr; }
  .service-dialog-grid > img { min-height: 230px; height: 230px; }
  .service-dialog-grid > div { padding: 38px 22px 30px; }
  .service-dialog h2 { font-size: 38px; }
  .service-dialog .large-copy { font-size: 15px; }
  .lightbox figure { width: calc(100vw - 40px); padding: 72px 0 100px; }
  .lightbox-arrow { top: auto; bottom: 24px; transform: none; }
  .faq { gap: 42px; }
  .faq-list summary { padding-block: 22px; font-size: 20px; }
  .contact-actions { flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .contact-details > div { grid-template-columns: 1fr; gap: 8px; }
  footer { padding-bottom: 96px; grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .mobile-cta { position: fixed; z-index: 50; left: 0; right: 0; bottom: 0; height: 62px; display: grid; grid-template-columns: .8fr 1.2fr; background: var(--forest); box-shadow: 0 -8px 24px rgba(0,0,0,.16); }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,.2); }
  .mobile-cta a:last-child { background: var(--terracotta); border-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

@media (prefers-contrast: more) {
  :root { --muted: #3e4843; --line: rgba(23, 59, 44, .4); }
  .contact-main > p:not(.eyebrow), .about-copy > p:not(.eyebrow) { color: #fff; }
}

:focus-visible { outline: 3px solid #dd8d6e; outline-offset: 4px; }
