:root {
  --cream: #f7f2ea;
  --sand: #efe4d5;
  --milk: #fffdf8;
  --terracotta: #c96a3d;
  --gold: #d9a441;
  --sage: #738a5e;
  --wine: #8e3b35;
  --brown: #3f332c;
  --text: #665b54;
  --muted: #9a8d82;
  --line: #e5d9ca;
  --shadow: 0 18px 45px rgba(63, 51, 44, 0.1);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-color: var(--terracotta) var(--sand);
  scrollbar-width: thin;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: var(--sand);
}

html::-webkit-scrollbar-thumb {
  border: 3px solid var(--sand);
  border-radius: 999px;
  background: var(--terracotta);
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--wine);
}
body {
  overflow-wrap: anywhere;
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  position: relative;
  z-index: 10;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brown);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav a {
  position: relative;
  padding: 8px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--milk);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--brown);
  font: inherit;
  font-weight: 800;
}
.hero {
  min-height: 680px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(40, 28, 21, 0.68), rgba(40, 28, 21, 0.2)),
    url("../images/1.jpg") center/cover;
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(transparent, var(--cream));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  padding: 90px 0;
  animation: rise 0.8s ease both;
}
.eyebrow {
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero .eyebrow {
  color: #f4cf7c;
}
h1,
h2,
h3 {
  margin: 0 0 18px;
  color: var(--brown);
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
}
h1 {
  font-size: clamp(3.1rem, 7vw, 6.6rem);
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}
h3 {
  font-size: 2rem;
}
.hero h1 {
  color: white;
}
.lead {
  max-width: 660px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 20px;
  background: var(--terracotta);
  color: white;
  padding: 15px 24px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s;
}
.button:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(201, 106, 61, 0.2);
}
.button.secondary {
  background: transparent;
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
}
.section {
  padding: 110px 0;
}
.section.sand {
  background: var(--sand);
}
.section-head {
  max-width: 650px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-head p {
  font-size: 1.05rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}
.product-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 80px 80px 22px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.product-card:nth-child(even) {
  margin-top: 45px;
  border-radius: 22px 22px 80px 80px;
}
.product-card:hover {
  transform: translateY(-8px);
}
.product-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  background: var(--sand);
  color: var(--terracotta);
  font-size: 1.3rem;
}
.product-card h3 {
  margin: 24px 0 6px;
  font-size: 1.55rem;
}
.product-card p {
  margin: 0;
  font-size: 0.9rem;
}
.card-arrow {
  margin-top: 14px;
  color: var(--terracotta);
  font-weight: 900;
}
.three-up,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.feature span {
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 900;
}
.feature h3 {
  margin-top: 18px;
  font-size: 1.75rem;
}
.feature p {
  margin-bottom: 0;
}
.quality-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.quality-line div {
  padding: 25px;
  border-right: 1px solid var(--line);
  color: var(--brown);
  font-weight: 800;
}
.quality-line div:last-child {
  border: 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.collage img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
}
.collage img:first-child {
  height: 410px;
  grid-row: span 2;
}
.cta {
  padding: 84px 0;
  background: linear-gradient(120deg, #f6e9d9, #fff9ed);
  text-align: center;
}
.page-hero {
  padding: 110px 0 90px;
  background: var(--sand);
}
.page-hero p {
  max-width: 670px;
  font-size: 1.1rem;
}
.product-list {
  display: grid;
  gap: 28px;
}
.product-feature {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 330px;
  overflow: hidden;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.product-feature:nth-child(even) {
  grid-template-columns: 1.2fr 0.8fr;
}
.product-feature:nth-child(even) img {
  order: 2;
}
.product-feature img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}
.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}
.product-copy p {
  margin: 0;
}
.team-card {
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 25px;
  overflow: hidden;
}
.team-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}
.team-card div {
  padding: 24px;
}
.quote {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 24px;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--brown);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.form-card,
.info-card,
.legal-card {
  padding: 42px;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}
.field.full {
  grid-column: 1 / -1;
}
label {
  color: var(--brown);
  font-weight: 800;
  font-size: 0.86rem;
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  padding: 14px;
  color: var(--brown);
  font: inherit;
}
textarea {
  min-height: 130px;
  resize: vertical;
}
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px;
  border-radius: 12px;
  background: #e6efdf;
  color: #416034;
  font-weight: 700;
}
.form-status.visible {
  display: block;
}
.contact-detail {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-detail:last-child {
  border: 0;
}
.contact-detail strong {
  display: block;
  color: var(--brown);
}
.map {
  min-height: 240px;
  display: grid;
  place-items: center;
  margin-top: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ddd5c8, #bdc9b3);
  color: var(--brown);
  font-weight: 900;
}
.legal-card {
  max-width: 850px;
  margin: auto;
}
.legal-card h2 {
  margin-top: 36px;
  font-size: 2.4rem;
}
.legal-card h2:first-child {
  margin-top: 0;
}
.site-footer {
  padding: 70px 0 25px;
  background: var(--brown);
  color: #e9dfd4;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.site-footer .brand {
  color: white;
}
.site-footer h3 {
  color: #f4cf7c;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-links a:hover {
  color: #f4cf7c;
}
.copyright {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
}
.reveal {
  animation: rise 0.7s ease both;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 850px) {
  .form-card,
  .info-card {
    padding: 1rem;
  }
  .container {
    width: min(100% - 32px, 680px);
  }
  .header-inner {
    min-height: 72px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 12px;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    padding: 10px;
  }
  .hero {
    min-height: 600px;
  }
  .products-grid,
  .three-up,
  .team-grid,
  .quality-line,
  .contact-grid,
  .story-grid,
  .product-feature,
  .product-feature:nth-child(even),
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .product-card,
  .product-card:nth-child(even) {
    margin-top: 0;
    min-height: 220px;
    border-radius: 24px;
  }
  .quality-line div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .product-feature:nth-child(even) img {
    order: 0;
  }
  .product-copy {
    padding: 32px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .section {
    padding: 75px 0;
  }
}
