:root {
  --ink: #302d28;
  --muted: #6c665d;
  --paper: #fbf8f2;
  --linen: #f1e8dc;
  --sage: #697762;
  --sage-dark: #505c4b;
  --clay: #b98668;
  --shell: #fffaf2;
  --line: #ded1c0;
  --shadow: 0 18px 60px rgba(45, 35, 25, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px clamp(20px, 5vw, 64px);
  color: var(--shell);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 248, 242, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(48, 45, 40, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  min-width: max-content;
}

.brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 7px;
  color: currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}

.site-nav a,
.site-footer nav a,
.instagram-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after,
.site-footer nav a::after,
.instagram-link::after {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  margin-top: 4px;
  background: currentColor;
  transition: width 0.22s ease;
}

.site-nav a:hover::after,
.site-footer nav a:hover::after,
.instagram-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(22px, 7vw, 96px) 86px;
  color: var(--shell);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  z-index: 0;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(34, 30, 24, 0.74), rgba(34, 30, 24, 0.32) 52%, rgba(34, 30, 24, 0.16)),
    linear-gradient(180deg, rgba(34, 30, 24, 0.32), rgba(34, 30, 24, 0.46));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 250, 242, 0.86);
}

h1,
h2,
h3,
blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(50px, 8vw, 100px);
  font-weight: 500;
  line-height: 0.95;
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--sage);
  color: var(--shell);
}

.button.primary:hover {
  background: var(--sage-dark);
}

.button.secondary {
  border-color: rgba(255, 250, 242, 0.62);
  color: var(--shell);
}

.button.secondary:hover {
  background: rgba(255, 250, 242, 0.12);
  border-color: var(--shell);
}

.section {
  padding: clamp(76px, 9vw, 124px) clamp(22px, 5vw, 72px);
}

.intro-band {
  background: var(--linen);
}

.intro-copy {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.intro-copy h2,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

.intro-copy p:last-child,
.section-heading p:last-child,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.72;
}

.intro-copy p:last-child {
  margin: 22px auto 0;
  max-width: 680px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p:last-child {
  margin: 16px 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 4px;
  color: var(--shell);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.gallery-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 16, 0.02), rgba(24, 20, 16, 0.62));
}

.gallery-card span,
.gallery-card strong {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.gallery-card span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3em;
}

.gallery-card strong {
  margin: 9px 0 34px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card:hover img {
  transform: scale(1.055);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  background: var(--linen);
}

.about-image {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.about-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy {
  max-width: 660px;
}

.about-copy p {
  margin: 22px 0 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}

.reviews {
  background: #f8f6ee;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--shell);
  padding: clamp(26px, 4vw, 42px);
}

blockquote {
  margin: 0;
  color: #3f3932;
  font-size: clamp(26px, 2.8vw, 36px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.28;
}

.review-grid figure:not(:first-child) blockquote {
  font-size: clamp(22px, 2.2vw, 28px);
}

figcaption {
  margin-top: 24px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 560px);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 20px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 16px;
  align-items: start;
}

.steps span {
  grid-row: span 2;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sage);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
}

.steps strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.steps p {
  margin: 4px 0 0;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--linen);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 14px 44px rgba(45, 35, 25, 0.08);
}

.contact-form h3 {
  margin: 0 0 24px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.contact-form label {
  display: block;
  margin-top: 16px;
  color: #746a5e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--shell);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  letter-spacing: 0;
  outline: none;
  padding: 13px 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(105, 119, 98, 0.16);
}

.form-button {
  width: 100%;
  margin-top: 24px;
  border: none;
  cursor: pointer;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: end;
  padding: 58px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #e8dfd1;
}

.site-footer p {
  max-width: 320px;
  margin: 16px 0 0;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-style: italic;
}

.footer-brand span {
  font-size: 28px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.instagram-link {
  color: var(--sage);
}

@media (max-width: 1000px) {
  .gallery-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 16px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(251, 248, 242, 0.98);
    color: var(--ink);
    padding: 10px 18px 18px;
    box-shadow: 0 14px 36px rgba(45, 35, 25, 0.1);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(48, 45, 40, 0.08);
  }

  .hero {
    min-height: 88vh;
    padding: 118px 20px 70px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(34, 30, 24, 0.52), rgba(34, 30, 24, 0.66)),
      linear-gradient(90deg, rgba(34, 30, 24, 0.44), rgba(34, 30, 24, 0.16));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 430px;
  }

  .steps li {
    grid-template-columns: 46px 1fr;
  }

  .steps span {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .site-footer nav {
    flex-direction: column;
  }
}
