:root {
  --page: #fbf8f4;
  --ink: #1c1a17;
  --muted: #6f665c;
  --soft: #f3ece2;
  --panel: #ffffff;
  --line: #e6ddd1;
  --accent: #a07a3c;
  --accent-dark: #7a5824;
  --espresso: #201d19;
  --gold: #c9a227;
  --shadow: 0 26px 74px rgba(45, 34, 20, 0.14);
  --container: min(100% - 44px, 1180px);
  --display: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 244, 0.88);
  border-bottom: 1px solid rgba(230, 221, 209, 0.8);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--container);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #75695c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.hero {
  width: var(--container);
  min-height: 720px;
  margin: 0 auto;
  padding: 78px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(400px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 7vw, 98px);
}

.hero-copy {
  max-width: 680px;
}

.microcopy {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  color: var(--ink);
  font-size: clamp(52px, 6.6vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-weight: 500;
  text-wrap: balance;
}

.hero-copy > p:not(.microcopy) {
  max-width: 580px;
  margin: 30px 0 42px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 2px;
  background: var(--espresso);
  color: #fbf8f4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(32, 29, 25, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.text-link {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-showcase {
  position: relative;
  align-self: stretch;
  min-height: 600px;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 44px -28px -30px 64px;
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.24), rgba(255, 255, 255, 0.75));
  border-radius: 2px;
  z-index: -1;
}

.hero-showcase img {
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  left: -54px;
  bottom: 44px;
  width: min(310px, 74%);
  padding: 26px;
  background: rgba(251, 248, 244, 0.93);
  border: 1px solid rgba(230, 221, 209, 0.95);
  border-radius: 2px;
  box-shadow: 0 20px 45px rgba(45, 34, 20, 0.14);
  backdrop-filter: blur(18px);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  margin-bottom: 9px;
  font-family: var(--display);
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-note span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.statement {
  width: var(--container);
  margin: 0 auto;
  padding: 76px 0;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 90px;
  border-top: 1px solid var(--line);
}

.statement h2,
.craft h2,
.section-title h2,
.service-panel h2 {
  margin: 0;
  font-family: var(--display);
  color: var(--ink);
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  font-weight: 500;
  text-wrap: balance;
}

.statement p,
.craft-copy p,
.section-title p,
.service-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.image-strip {
  width: var(--container);
  margin: 0 auto;
  padding: 32px 0 112px;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 26px;
  align-items: end;
}

.image-strip figure {
  margin: 0;
}

.image-strip figure:nth-child(2) {
  transform: translateY(46px);
}

.image-strip img {
  height: 440px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(45, 34, 20, 0.12);
}

.craft {
  background: var(--espresso);
  color: #fbf8f4;
  padding: 108px max(22px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 96px;
}

.craft .microcopy {
  color: var(--gold);
}

.craft h2 {
  color: #fbf8f4;
}

.craft-copy p {
  margin-top: 28px;
  color: #cdc3b6;
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(251, 248, 244, 0.16);
}

.process-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(251, 248, 244, 0.16);
}

.process-list span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-list h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  color: #fbf8f4;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
}

.process-list p {
  margin: 0;
  color: #cdc3b6;
  font-size: 16px;
  line-height: 1.7;
}

.gallery,
.packages,
.services {
  width: var(--container);
  margin: 0 auto;
  padding: 108px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-title p {
  margin-top: 22px;
  max-width: 660px;
}

.section-title.compact {
  max-width: 700px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 250px;
  gap: 22px;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 16px 40px rgba(45, 34, 20, 0.11);
}

.gallery-grid .large {
  grid-row: span 2;
}

.gallery-grid .wide {
  grid-column: 1 / -1;
}

.packages {
  border-top: 1px solid var(--line);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.package-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(45, 34, 20, 0.09);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 66px rgba(45, 34, 20, 0.15);
}

.package-card.featured {
  border-color: rgba(160, 122, 60, 0.45);
  box-shadow: 0 28px 80px rgba(160, 122, 60, 0.2);
}

.package-card img {
  height: 240px;
  object-fit: cover;
  object-position: center 35%;
}

.package-content {
  flex: 1;
  min-height: 256px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
}

.package-content .tier {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-card.featured .tier {
  color: var(--accent-dark);
}

.package-content h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  color: var(--ink);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
}

.package-content p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.package-content strong {
  font-family: var(--display);
  color: var(--accent-dark);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

.services {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 90px;
  border-top: 1px solid var(--line);
}

.service-panel p {
  margin-top: 24px;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  color: var(--ink);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
}

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 68px 0 76px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr;
  gap: 60px;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
}

.footer h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  color: var(--ink);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
}

.footer p,
.footer address,
.footer-contact {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-style: normal;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 1080px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .nav {
    min-height: 72px;
  }

  .nav-links {
    gap: 18px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 56px 0 76px;
  }

  .hero-showcase {
    min-height: 480px;
  }

  .hero-showcase img {
    min-height: 480px;
  }

  .hero-note {
    left: 24px;
    bottom: 24px;
  }

  .statement,
  .craft,
  .services,
  .footer {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .image-strip {
    grid-template-columns: 1fr;
  }

  .image-strip figure:nth-child(2) {
    transform: none;
  }

  .image-strip img {
    height: 380px;
  }

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

  .gallery-grid .large,
  .gallery-grid .wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
  }

  .brand {
    font-size: 22px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-copy > p:not(.microcopy) {
    max-width: 340px;
    font-size: 17px;
    overflow-wrap: break-word;
  }

  .hero-showcase {
    min-height: 0;
  }

  .hero-showcase img {
    height: 440px;
    min-height: 0;
  }

  .hero-showcase::before {
    inset: 28px -14px -18px 24px;
  }

  .hero-note {
    position: relative;
    left: auto;
    bottom: auto;
    width: 288px;
    max-width: calc(100% - 96px);
    margin: -78px 0 0 24px;
    z-index: 2;
  }

  .hero-note span {
    overflow-wrap: break-word;
  }

  .statement,
  .gallery,
  .packages,
  .services {
    padding: 72px 0;
  }

  .image-strip {
    padding-bottom: 80px;
  }

  .craft {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card img {
    height: 240px;
  }

  .package-content {
    min-height: 230px;
  }
}
