/* ---------- Design tokens ---------- */
:root {
  --cream: #faf5ee;
  --cream-deep: #f0e8da;
  --ink: #1c2b28;
  --ink-soft: #4c5d59;
  --teal: #044f5e;
  --teal-deep: #033740;
  --orange: #d6861e;
  --orange-deep: #b06f18;
  --line: rgba(28, 43, 40, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; }

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin: 0 0 40px;
  letter-spacing: 0.01em;
}

/* accent flourish text — replaces the former script typeface */
.accent,
.lead-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 238, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.brand span {
  font-style: italic;
  color: var(--teal);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.site-nav a:hover { color: var(--orange); }

.nav-cta {
  border: 1px solid var(--teal);
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--teal) !important;
}

.nav-cta:hover {
  background: var(--teal);
  color: var(--cream) !important;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: calc(100vh - 76px);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 8vw 60px 8vw;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--orange);
  margin: 0 0 22px;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 24px;
}

.hero h1 .accent {
  font-size: 1.05em;
  line-height: 1;
  display: inline-block;
  margin-top: 6px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 420px;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-solid {
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange);
}

.btn-solid:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
}

.btn-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--cream);
}

.hero-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ---------- Intro ---------- */
.intro {
  padding: 90px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-inner {
  max-width: 720px;
}

.intro p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}

/* ---------- Gallery (masonry, uncropped) ---------- */
.gallery-section {
  padding: 100px 0;
}

.gallery {
  columns: 3 280px;
  column-gap: 18px;
}

.g-item {
  position: relative;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 4px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.g-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.g-item:hover img { transform: scale(1.03); }

.g-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 14px;
  font-size: 0.82rem;
  color: #fff;
  background: linear-gradient(to top, rgba(18, 51, 49, 0.78), rgba(18, 51, 49, 0));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  letter-spacing: 0.01em;
}

.g-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- About ---------- */
.about-section {
  background: var(--cream-deep);
  padding: 100px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.lead-accent {
  font-size: 2.1rem;
  margin: 0 0 6px;
}

.about-text h2 { margin-bottom: 4px; }

.about-text p:not(.lead-accent) {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 560px;
}

/* ---------- Services ---------- */
.services-section {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.service {
  border-top: 2px solid var(--orange);
  padding-top: 20px;
}

.service h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 10px;
}

.service p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Contact ---------- */
.contact-section {
  background: var(--teal-deep);
  color: var(--cream);
  padding: 120px 0;
  text-align: center;
}

.contact-inner { max-width: 620px; margin: 0 auto; }

.contact-section .lead-accent {
  color: var(--orange);
}

.contact-section h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0 0 18px;
}

.contact-sub {
  color: rgba(250, 245, 238, 0.75);
  margin: 0 0 34px;
}

.contact-section .btn-solid {
  font-size: 1rem;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 28px 0;
  background: var(--teal-deep);
  color: rgba(250, 245, 238, 0.6);
  border-top: 1px solid rgba(250, 245, 238, 0.12);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 320px; order: -1; }
  .hero-text { padding: 50px 6vw; }

  .about-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 340px; margin: 0 auto; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery { columns: 2 220px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .site-nav { gap: 12px; font-size: 0.8rem; }
  .site-nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 8px 16px; white-space: nowrap; }
  .gallery { columns: 1; }
  .g-item figcaption { opacity: 1; transform: none; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 90px 0; }
}
