:root {
  --teal: #263746;
  --gold: #D3B87F;
  --cream: #FBF7F1;
  --ink: #2A2420;
  --body: #6B5F53;
  --navy: #1C2A35;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
input, select, textarea, button { font-family: inherit; }
input:focus, select:focus, textarea:focus, button:focus, a:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
::placeholder { color: #9C8F82; }
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.wrap { max-width: 1160px; margin: 0 auto; }
.hidden { display: none; }
.visually-hidden, .field input.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; border: 0; opacity: 0; overflow: hidden; clip: rect(0 0 0 0); }
.field { position: relative; }
section[id] { scroll-margin-top: 100px; }

/* Buttons */
.btn { display: inline-block; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; border: none; cursor: pointer; }
.btn-teal { padding: 11px 22px; background: var(--teal); color: var(--cream); letter-spacing: 0.06em; }
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 500; }
.btn-lg { padding: 16px 40px; }
.btn-gold:hover { background: #E0C896; }
.btn-teal:hover { background: #34495C; }

.eyebrow { font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.eyebrow-wide { letter-spacing: 0.28em; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251,247,241,0.92); backdrop-filter: blur(6px);
  border-bottom: 1px solid #E7DCCB;
}
.header-inner { padding: 12px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 76px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav-link { font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: #4A3F35; }
.nav-link:hover { color: var(--teal); text-decoration: underline; text-underline-offset: 6px; }

/* Hero */
.hero {
  background: linear-gradient(180deg, #141F27 0%, var(--teal) 55%, #22313F 100%);
  padding: 110px 32px 130px; position: relative; overflow: hidden;
}
.hero-rings { position: absolute; right: -160px; top: -120px; opacity: 0.14; }
.hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.hero h1 { margin: 0; font-size: 64px; line-height: 1.12; font-weight: 500; color: var(--cream); max-width: 780px; }
.hero p { margin: 0; max-width: 560px; font-size: 19px; line-height: 1.6; color: #D9CFC0; font-weight: 300; }
.hero .btn { margin-top: 12px; }

/* Sections */
.section { padding: 100px 32px; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { margin: 12px 0 0; font-size: 40px; font-weight: 500; color: var(--teal); }

/* Story */
.story { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.story-photo { aspect-ratio: 3/4; border-radius: 2px; overflow: hidden; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.story-text { display: flex; flex-direction: column; gap: 18px; }
.story-text h2 { margin: 0; font-size: 38px; font-weight: 500; color: var(--teal); }
.story-text p { margin: 0; font-size: 16px; line-height: 1.8; color: var(--body); }
.signature { margin-top: 8px; font-size: 17px; font-style: italic; color: var(--ink); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px; }
.step { display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
.step h3 { margin: 4px 0 0; font-size: 22px; font-weight: 600; color: var(--ink); }
.step p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--body); max-width: 280px; }

/* Gallery */
.gallery-section { padding-top: 20px; padding-bottom: 110px; }
.gallery-section .section-head { margin-bottom: 56px; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.gallery figure { margin: 0; aspect-ratio: 1; border-radius: 2px; overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Inquiry */
.inquire { padding: 110px 32px; background: var(--navy); }
.form-wrap { max-width: 640px; margin: 0 auto; }
.inquire .section-head { margin-bottom: 48px; }
.inquire .section-head h2 { margin: 12px 0 10px; font-size: 38px; color: var(--cream); }
.inquire .section-head p { margin: 0; font-size: 15px; line-height: 1.7; color: #C8BFAE; }
.form { display: flex; flex-direction: column; gap: 22px; }
.row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > label:first-child { font-size: 13px; letter-spacing: 0.04em; color: #D9CFC0; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; background: var(--cream);
  border: 1px solid #3C4F5C; border-radius: 2px; font-size: 15px; color: var(--ink);
}
.field textarea { resize: vertical; }
.muted { color: #8CA0AA; }
.upload {
  display: flex; align-items: center; justify-content: center; gap: 10px; padding: 22px 14px;
  background: rgba(251,247,241,0.04); border: 1px dashed #4C5F6B; border-radius: 2px;
  font-size: 14px; color: #C8BFAE; cursor: pointer;
}
.upload:hover { border-color: var(--gold); }
.form .btn { margin-top: 8px; width: 100%; }
.fineprint { margin: 0; font-size: 12px; line-height: 1.6; color: #8CA0AA; text-align: center; }

/* Thank-you page */
.thanks-card {
  background: #243440; border: 1px solid #3C4F5C; border-radius: 2px; padding: 48px 36px;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.thanks-card h1 { margin: 0; font-size: 30px; font-weight: 600; color: var(--cream); }
.thanks-card p { margin: 0; max-width: 380px; font-size: 15px; line-height: 1.7; color: #C8BFAE; }

/* Footer */
.site-footer { padding: 56px 32px; background: #16222B; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer-name { font-size: 20px; font-weight: 600; color: var(--cream); }
.footer-links { display: flex; flex-wrap: wrap; gap: 28px; font-size: 13px; letter-spacing: 0.03em; color: #A8B7BF; }
.footer-links a { text-decoration: underline; }
.copyright { font-size: 12px; color: #8595A0; }

/* Tablet */
@media (max-width: 900px) {
  .hero h1 { font-size: 48px; }
  .story { grid-template-columns: 1fr; gap: 40px; }
  .story-photo { max-width: 460px; width: 100%; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

/* Phone */
@media (max-width: 640px) {
  .header-inner { padding: 8px 16px; gap: 12px; }
  .brand img { height: 56px; }
  .nav { gap: 16px; }
  .nav-link { display: none; }
  .btn-teal { padding: 10px 16px; font-size: 13px; }
  .hero { padding: 72px 16px 88px; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 17px; }
  .section { padding: 72px 16px; }
  .gallery-section { padding-top: 8px; padding-bottom: 72px; }
  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: 32px; }
  .story-text h2 { font-size: 32px; }
  .gallery { gap: 10px; }
  .inquire { padding: 72px 16px; }
  .inquire .section-head h2 { font-size: 30px; }
  .row { grid-template-columns: 1fr; }
  .site-footer { padding: 44px 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
