:root {
  --ink: #181514;
  --muted: #716966;
  --line: #e8ddd5;
  --paper: #fbf7f2;
  --cream: #fff0d8;
  --rose: #d84f64;
  --berry: #54182a;
  --mint: #356f64;
  --gold: #c99a45;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(38, 27, 24, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 79, 100, 0.08), transparent 32rem),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(24, 21, 20, 0.56), rgba(24, 21, 20, 0.08));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.brand,
.main-nav,
.hero-actions,
.hero-stats,
.intro-band,
.hero-stats div {
  display: flex;
  align-items: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand {
  flex: 0 0 auto;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: rgba(216, 79, 100, 0.82);
  border-radius: 14px;
  font-family: "Playfair Display", serif;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.main-nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 24px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  min-width: 0;
}

.main-nav a,
.nav-action {
  text-decoration: none;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 2px;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 13px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.nav-action {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: var(--white);
  background: rgba(22, 132, 91, 0.92);
  border-radius: 10px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(112px, 12vw, 150px) clamp(20px, 5vw, 84px) clamp(48px, 8vw, 110px);
  background:
    linear-gradient(90deg, rgba(24, 21, 20, 0.84), rgba(24, 21, 20, 0.26) 58%, rgba(24, 21, 20, 0.06)),
    url("https://images.unsplash.com/photo-1578985545062-69928b1d9587?auto=format&fit=crop&w=2200&q=90") center / cover no-repeat;
}

.hero-copy {
  max-width: 720px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--berry);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #ffd08d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 9vw, 7.8rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.hero-copy p {
  max-width: 590px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--berry));
}

.button.secondary {
  color: var(--ink);
  background: var(--cream);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 16px;
  margin: 42px 0 0;
}

.hero-stats div {
  min-width: 146px;
  align-items: flex-start;
  flex-direction: column;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats dt {
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.25;
}

.section {
  padding: clamp(56px, 8vw, 106px) clamp(20px, 5vw, 84px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-copy {
  max-width: 600px;
  color: var(--muted);
}

.intro-band {
  justify-content: center;
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--ink);
  color: var(--white);
}

.highlight {
  flex: 1 1 260px;
  min-height: 116px;
  padding: 24px clamp(18px, 3vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.highlight span {
  display: block;
  margin-bottom: 6px;
  color: #ffd08d;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.category-card,
.reviews-grid figure,
.order-form,
.custom-form,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.category-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 80px rgba(38, 27, 24, 0.18);
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.category-card div {
  padding: 20px;
}

.category-card p,
.reviews-grid blockquote,
.reviews-grid figcaption,
.contact-panel,
.custom-copy p {
  color: var(--muted);
}

.gallery-section {
  background: #eef5f1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:nth-child(3) {
  grid-row: span 2;
}

.order-layout,
.custom-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.order-form,
.custom-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.custom-section {
  background:
    linear-gradient(135deg, rgba(216, 79, 100, 0.1), rgba(53, 111, 100, 0.08)),
    #fff9f8;
}

.custom-copy {
  max-width: 560px;
}

.reviews-section {
  background: var(--paper);
}

.reviews-grid figure {
  margin: 0;
  padding: 26px;
}

.reviews-grid blockquote {
  margin: 0 0 20px;
  font-size: 1.05rem;
}

.reviews-grid figcaption {
  font-weight: 800;
}

.contact-section {
  background: var(--ink);
}

.contact-panel {
  padding: clamp(24px, 4vw, 42px);
}

.contact-panel address {
  margin-bottom: 20px;
  font-style: normal;
}

.contact-panel .button {
  margin-top: 10px;
}

iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 14px;
  filter: saturate(0.9);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 84px);
  color: var(--white);
  background: #151313;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(38, 27, 24, 0.16);
  }

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

  .main-nav a {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: var(--paper);
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .nav-action {
    margin-left: auto;
  }

  .category-grid,
  .reviews-grid,
  .order-layout,
  .custom-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    padding: 14px 16px;
  }

  .brand span:last-child {
    max-width: none;
    line-height: 1.1;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .hero {
    min-height: 100svh;
    align-items: center;
    padding: 86px 20px 34px;
    background:
      linear-gradient(180deg, rgba(24, 21, 20, 0.2), rgba(24, 21, 20, 0.88)),
      url("https://images.unsplash.com/photo-1578985545062-69928b1d9587?auto=format&fit=crop&w=1300&q=90") center top / cover no-repeat;
  }

  .hero .eyebrow {
    margin-top: 0;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .nav-action {
    display: none;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .hero-stats div {
    min-width: 0;
    padding: 12px 10px;
    border-radius: 10px;
  }

  .hero-stats dt {
    font-size: 1.35rem;
  }

  .hero-stats dd {
    font-size: 0.76rem;
  }

  .intro-band {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

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

  .highlight {
    width: 100%;
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .highlight:last-child {
    border-bottom: 0;
  }

  .order-form,
  .custom-form,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(3) {
    grid-row: span 1;
  }
}
