:root {
  --color-bg: #ffffff;
  --color-paper: #f4f0e9;
  --color-text: #2e2e2e;
  --color-muted: #777777;
  --color-dark: #1c1a18;
  --color-darker: #11100d;
  --color-gold: #caa848;
  --color-gold-dark: #b29235;
  --color-border: #dedbd4;
  --color-whatsapp: #18d56f;
  --font-main: "Montserrat", Arial, sans-serif;
  --container: 1320px;
  --section-space: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 112px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 18px 56px;
  background: #ffffff;
}

.logo-link img {
  width: 116px;
  height: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 32px;
  border: 0;
  background: var(--color-gold);
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--color-gold-dark);
  box-shadow: 0 10px 24px rgba(51, 42, 20, 0.22);
  transform: translateY(-1px);
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

.button-small {
  min-height: 48px;
  padding: 0 28px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 870px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(20, 19, 17, 0.92) 0%, rgba(20, 19, 17, 0.72) 36%, rgba(20, 19, 17, 0.5) 60%, rgba(20, 19, 17, 0.36) 100%),
    url("../images/hero-dining-room.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-content {
  width: min(850px, calc(100% - 112px));
  margin-left: 56px;
  padding-bottom: 20px;
}

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

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(46px, 5.2vw, 76px);
  font-weight: 800;
  line-height: 1.22;
}

.hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 36px 0 42px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  font-weight: 500;
}

.whatsapp-float {
  position: fixed;
  z-index: 10;
  right: 31px;
  bottom: 31px;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #ffffff;
  font-size: 31px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
  transform: scale(1.05);
}

.intro {
  padding: 70px 0 68px;
  border-bottom: 1px solid var(--color-border);
}

.intro h2 {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.35;
}

.categories {
  padding: 98px 0 94px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.category-card {
  min-width: 0;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #ffffff;
}

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

.category-card > div {
  min-height: 220px;
  padding: 28px 30px 26px;
}

.category-card h3 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
}

.category-card p {
  min-height: 76px;
  margin: 0 0 24px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
}

.button-card {
  min-height: 42px;
  padding: 0 20px;
  font-size: 12px;
}

.metrics {
  padding: 96px 0;
  background: var(--color-dark);
  color: #ffffff;
  text-align: center;
}

.metrics h2 {
  margin: 0 0 52px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 55px;
}

.metric-grid article {
  display: grid;
  align-content: center;
  min-height: 146px;
  padding: 18px 15px;
  border: 1px solid rgba(202, 168, 72, 0.25);
}

.metric-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-gold);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.metrics-button {
  min-width: 360px;
}

.projects {
  padding: 98px 0 86px;
  text-align: center;
}

.projects h2 {
  max-width: 1120px;
  margin: 0 auto 20px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.28;
}

.projects p {
  max-width: 780px;
  margin: 0 auto 58px;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 500;
}

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

.project-gallery img {
  width: 100%;
  aspect-ratio: 1080 / 1440;
  object-fit: cover;
}

.faq {
  padding: 100px 0 104px;
  background: var(--color-paper);
}

.faq-container {
  width: min(930px, calc(100% - 112px));
  margin: 0 auto;
}

.faq h2 {
  margin: 0 0 60px;
  text-align: center;
  font-size: 32px;
  font-weight: 800;
}

.accordion {
  border-bottom: 1px solid var(--color-border);
}

.accordion:first-of-type {
  border-top: 1px solid var(--color-border);
}

.accordion-trigger {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3d3a36;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
}

.accordion-trigger span {
  flex: 0 0 auto;
  color: var(--color-gold);
  font-size: 18px;
  font-weight: 700;
}

.accordion-trigger:hover,
.accordion-trigger:focus-visible {
  color: var(--color-gold-dark);
}

.accordion-panel p {
  margin: -4px 42px 26px 0;
  color: var(--color-muted);
  font-size: 14px;
}

.contact {
  padding: 90px 0 88px;
  background: var(--color-dark);
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 110px;
  align-items: center;
}

.contact .eyebrow {
  margin-bottom: 20px;
}

.contact h2 {
  max-width: 500px;
  margin: 0 0 28px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
}

.contact p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: block;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form input {
  width: 100%;
  min-height: 62px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  background: #ffffff;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  outline: 0;
}

.contact-form input::placeholder {
  color: #a3a3a3;
}

.contact-form input:focus {
  border-color: var(--color-gold);
}

.form-button {
  width: 100%;
  min-height: 62px;
}

.site-footer {
  padding: 44px 0;
  background: var(--color-darker);
  color: rgba(255, 255, 255, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 360px;
  gap: 80px;
  align-items: center;
}

.site-footer img {
  width: 220px;
  background: transparent;
}

.site-footer address {
  display: grid;
  gap: 5px;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-gold);
}

.site-footer p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .container,
  .faq-container {
    width: min(100% - 64px, var(--container));
  }

  .site-header {
    min-height: 82px;
    padding: 16px 32px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: min(760px, calc(100% - 64px));
    margin-left: 32px;
  }

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

  .metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    gap: 56px;
  }

  .footer-grid {
    grid-template-columns: 150px 1fr 320px;
    gap: 42px;
  }
}

@media (max-width: 820px) {
  :root {
    --section-space: 68px;
  }

  .site-header {
    gap: 20px;
  }

  .logo-link img {
    width: 96px;
  }

  .hero {
    min-height: 660px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .intro,
  .categories,
  .metrics,
  .projects,
  .faq,
  .contact {
    padding-top: 68px;
    padding-bottom: 68px;
  }

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

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

  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .metrics-button {
    min-width: min(360px, 100%);
  }
}

@media (max-width: 560px) {
  .container,
  .faq-container {
    width: calc(100% - 40px);
  }

  .site-header {
    min-height: 72px;
    padding: 13px 20px;
  }

  .button-small {
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
  }

  .hero {
    min-height: 610px;
    background-image: linear-gradient(90deg, rgba(20, 19, 17, 0.94) 0%, rgba(20, 19, 17, 0.78) 70%, rgba(20, 19, 17, 0.55) 100%),
      url("../images/hero-dining-room.png");
  }

  .hero-content {
    width: calc(100% - 40px);
    margin-left: 20px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p:not(.eyebrow) {
    margin: 26px 0 32px;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 12px;
  }

  .site-header .button-small {
    width: auto;
    min-width: 154px;
    padding: 0 16px;
    white-space: nowrap;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    font-size: 25px;
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    transform: scale(1.05);
  }

  .intro h2,
  .metrics h2,
  .projects h2,
  .faq h2,
  .contact h2 {
    font-size: 26px;
  }

  .category-grid,
  .metric-grid,
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .category-card > div {
    min-height: auto;
    padding: 24px 22px;
  }

  .category-card p {
    min-height: auto;
  }

  .metric-grid article {
    min-height: 116px;
  }

  .accordion-trigger {
    min-height: 68px;
    font-size: 13px;
  }

  .footer-grid {
    text-align: left;
  }
}
