:root {
  --ivory: #f6f2ea;
  --ivory-deep: #eee7dc;
  --sand: #d8cbb9;
  --taupe: #9c8872;
  --sage: #66705f;
  --sage-dark: #4f584a;
  --ink: #252622;
  --muted: #6d6b64;
  --white: #fffdf9;
  --line: rgba(37, 38, 34, 0.12);
  --shadow: 0 24px 70px rgba(51, 45, 37, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.section {
  padding: 112px 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: blur(14px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(51, 45, 37, 0.06);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  letter-spacing: -0.03em;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-cta {
  padding: 0 20px;
  color: var(--white);
  background: var(--ink);
}

.nav-cta:hover,
.button:hover,
.contact-button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 1.5px;
  display: block;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  padding: 48px 0 90px;
  overflow: hidden;
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
}

.hero-copy {
  padding: 34px 0;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 8vw, 7.4rem);
}

.hero-text {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

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

.button {
  min-width: 158px;
  padding: 0 26px;
  border: 1px solid var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
}

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

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

.button-secondary {
  background: transparent;
}

.button-secondary:hover {
  background: var(--white);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 48px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.hero-notes span {
  display: flex;
  align-items: center;
}

.hero-notes span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 14px;
  border-radius: 50%;
  background: var(--taupe);
}

.hero-image-wrap {
  position: relative;
  height: min(72vh, 720px);
  min-height: 560px;
  overflow: hidden;
  border-radius: 220px 220px 36px 36px;
  box-shadow: var(--shadow);
  background: var(--sand);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(34, 32, 28, 0.17), transparent 46%);
  pointer-events: none;
}

.hero-image-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  width: 126px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: white;
  text-align: center;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.08);
}

.hero-badge span,
.hero-badge strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.05;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.section-heading > p {
  max-width: 460px;
  justify-self: end;
  color: var(--muted);
}

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

.collection-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.58);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 60px rgba(51, 45, 37, 0.10);
}

.collection-image {
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: var(--sand);
}

.collection-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-image img {
  transform: scale(1.035);
}

.collection-content {
  position: relative;
  padding: 30px 30px 32px;
}

.collection-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--taupe);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.collection-content h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.collection-content p {
  max-width: 320px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.comfort-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.comfort-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sand);
}

.comfort-image img {
  min-height: 640px;
  object-fit: cover;
}

.comfort .eyebrow {
  color: #cbbca8;
}

.comfort-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255, 253, 249, 0.68);
}

.feature-list {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.69rem;
  font-weight: 800;
}

.feature-item h3 {
  margin-bottom: 5px;
  font-family: inherit;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0;
}

.feature-item p {
  color: rgba(255, 253, 249, 0.6);
  font-size: 0.9rem;
}

.statement {
  padding-block: 90px;
  background: var(--sage);
  color: var(--white);
}

.statement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.statement-mark {
  width: 78px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.statement p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact {
  background: var(--ivory-deep);
}

.contact-card {
  padding: clamp(34px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 20px 55px rgba(51, 45, 37, 0.06);
}

.contact-copy h2 {
  max-width: 700px;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
}

.contact-copy > p:last-child {
  max-width: 600px;
  margin-top: 22px;
  color: var(--muted);
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-button {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-button:hover {
  border-color: rgba(37, 38, 34, 0.28);
  box-shadow: 0 14px 30px rgba(51, 45, 37, 0.08);
}

.contact-button-whatsapp {
  color: var(--white);
  background: var(--sage-dark);
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
}

.contact-button-whatsapp .contact-icon {
  background: rgba(255, 255, 255, 0.12);
}

.contact-icon svg {
  width: 23px;
  fill: currentColor;
}

.contact-button small,
.contact-button strong {
  display: block;
}

.contact-button small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-button-whatsapp small {
  color: rgba(255, 255, 255, 0.66);
}

.contact-button strong {
  font-size: 1.05rem;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.68);
  background: #1f201d;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  font-size: 0.78rem;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  border-color: rgba(255, 255, 255, 0.55);
}

.copyright {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(102, 112, 95, 0.55);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 61;
  }

  .site-nav {
    position: fixed;
    z-index: 60;
    inset: 0;
    padding: 120px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--ivory);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav > a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 500;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    min-height: 58px;
    margin-top: 28px;
    padding-inline: 20px;
    border: 0;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .hero {
    padding-top: 24px;
  }

  .hero-grid,
  .comfort-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
  }

  .hero-copy {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: clamp(4rem, 12vw, 6.2rem);
  }

  .hero-image-wrap {
    height: 640px;
    min-height: auto;
    border-radius: 180px 180px 30px 30px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    justify-self: start;
  }

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

  .collection-card:last-child {
    grid-column: 1 / -1;
  }

  .collection-card:last-child .collection-image {
    aspect-ratio: 16 / 8;
  }

  .comfort-image {
    order: 2;
  }

  .comfort-copy {
    order: 1;
  }

  .comfort-image img {
    min-height: 520px;
  }

  .contact-card {
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .copyright {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 38px;
  }

  .brand-name {
    font-size: 1.22rem;
  }

  .hero {
    padding-bottom: 68px;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.55rem, 18vw, 5.4rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    min-width: 0;
    padding-inline: 16px;
  }

  .hero-notes {
    margin-top: 34px;
  }

  .hero-image-wrap {
    height: 500px;
    border-radius: 140px 140px 24px 24px;
  }

  .hero-image-wrap img {
    object-position: 53% center;
  }

  .hero-badge {
    right: 18px;
    bottom: 18px;
    width: 96px;
  }

  .hero-badge span,
  .hero-badge strong {
    font-size: 0.88rem;
  }

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

  .collection-card:last-child {
    grid-column: auto;
  }

  .collection-card:last-child .collection-image,
  .collection-image {
    aspect-ratio: 4 / 4.2;
  }

  .collection-content {
    padding: 24px;
  }

  .collection-number {
    top: 24px;
    right: 24px;
  }

  .comfort-image img {
    min-height: 430px;
  }

  .feature-item {
    grid-template-columns: 42px 1fr;
  }

  .statement-inner {
    flex-direction: column;
    gap: 24px;
  }

  .statement-mark {
    width: 64px;
  }

  .contact-card {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .contact-button {
    min-height: 86px;
    padding: 16px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
