:root {
  --bg: #f5efe7;
  --bg-alt: #efe7dc;
  --line: #ddd3c6;
  --text: #5a3424;
  --muted: #7a6a5f;
  --navy: #173b6d;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

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

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

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

/* HEADER */
.header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--text);
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav nav a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #7d7267;
  transition: color 0.2s ease;
}

.nav nav a:hover {
  color: var(--navy);
}

/* TAG */
.tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--navy);
}

.tag.light {
  color: rgba(255, 255, 255, 0.82);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 88px 0 96px;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 4.7rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-text h1 span {
  color: var(--navy);
  font-style: italic;
}

.hero-text p {
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 30px;
}

.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* BUTTONS */
.buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 40px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-white {
  background: #f6efe6;
  color: var(--text);
  border: 1px solid #f6efe6;
}

.btn-white:hover {
  transform: translateY(-1px);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 6px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #6e6258;
  border-bottom: 1px solid #b9ab9a;
}

/* MANIFESTO */
.manifesto {
  padding: 8px 0 82px;
  text-align: center;
}

.manifesto-text {
  max-width: 840px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.45;
  color: var(--text);
}

/* FEATURED */
.featured {
  padding: 10px 0 92px;
}

.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.featured-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 400;
}

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

.card img {
  width: 100%;
  aspect-ratio: 0.95 / 1;
  object-fit: cover;
  margin-bottom: 18px;
  background: #ebe2d7;
}

.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 96%;
}

/* CTA */
.cta {
  background: linear-gradient(90deg, #1c3f6f 0%, #163b6d 72%, #1b355c 72%, #1b355c 100%);
  padding: 72px 0;
}

.cta-content {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.16;
  font-weight: 400;
  color: var(--white);
}

.cta p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  font-size: 1rem;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--line);
  padding: 52px 0 34px;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #7d7267;
  margin-bottom: 14px;
}

.footer p,
.footer a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer a {
  display: block;
  margin-bottom: 6px;
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .hero,
  .cta-content,
  .footer-grid,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 40px;
    padding: 64px 0 72px;
  }

  .hero-image img {
    height: auto;
  }

  .featured-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta {
    background: #173b6d;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

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

  .nav nav {
    gap: 14px;
  }

  .hero-text h1,
  .manifesto-text,
  .featured-header h2,
  .cta h2 {
    line-height: 1.12;
  }

  .buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-link,
  .btn-primary,
  .btn-white {
    justify-content: center;
  }
}
.page-hero {
  padding: 88px 0 56px;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 1.06;
  font-weight: 400;
  margin-bottom: 20px;
}

.page-description {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.02rem;
}

.product-section {
  padding: 38px 0 70px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.14;
  font-weight: 400;
  margin-bottom: 28px;
}

.section-description {
  max-width: 720px;
  color: var(--muted);
  margin-bottom: 24px;
}

.products-grid {
  display: grid;
  gap: 24px;
}

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

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

.product-card {
  display: flex;
  flex-direction: column;
}

.product-image-wrap {
  background: #ebe2d7;
  margin-bottom: 18px;
}

.product-image-wrap img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
}

.product-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.product-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.product-topline span {
  font-size: 0.88rem;
  color: var(--muted);
  white-space: nowrap;
}

.product-info p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 8px;
}

.product-info small {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: #8a7c70;
}

.shop-cta {
  padding: 24px 0 86px;
}

.shop-cta-box {
  border: 1px solid var(--line);
  padding: 38px 28px;
  text-align: center;
}

.shop-cta-box h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 10px;
}

.shop-cta-box p {
  max-width: 720px;
  margin: 0 auto 22px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .products-grid-2,
  .products-grid-3 {
    grid-template-columns: 1fr;
  }
}
.about-hero {
  text-align: center;
  padding: 92px 0 84px;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.08;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-title span {
  color: var(--navy);
  font-style: italic;
}

.about-description {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.about-highlight {
  background: var(--bg-alt);
  padding: 74px 0;
  margin-bottom: 76px;
}

.about-highlight-inner {
  text-align: center;
}

.about-highlight-inner p {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.55;
  font-weight: 400;
}

.about-senses {
  padding-bottom: 72px;
}

.section-title-narrow {
  max-width: 900px;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 34px;
}

.about-column h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.about-column p {
  color: var(--muted);
  font-size: 0.96rem;
}

.about-closing {
  text-align: center;
  padding: 10px 0 88px;
}

.about-closing p {
  max-width: 860px;
  margin: 0 auto 28px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.6;
  font-weight: 400;
}

.about-closing span {
  color: var(--navy);
  font-style: italic;
}

.about-closing .btn-primary {
  min-width: 220px;
}

@media (max-width: 980px) {
  .about-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.orders-hero {
  text-align: center;
  padding: 92px 0 44px;
}

.orders-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1.08;
  font-weight: 400;
  margin-bottom: 18px;
}

.orders-description {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.orders-form-section {
  padding: 20px 0 88px;
}

.orders-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #f7f1e8;
  padding: 34px 32px 26px;
}

.orders-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7c7065;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d6c9ba;
  background: transparent;
  padding: 14px 14px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a99c90;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b8a896;
  box-shadow: 0 0 0 2px rgba(184, 168, 150, 0.14);
}

.choice-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.choice-pill {
  position: relative;
  cursor: pointer;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #d6c9ba;
  font-size: 0.78rem;
  color: var(--text);
  background: transparent;
  transition: 0.2s ease;
}

.choice-pill input:checked + span {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.full {
  width: 100%;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 720px) {
  .orders-form-wrap {
    padding: 24px 18px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-hero {
  text-align: center;
  padding: 92px 0 44px;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 400;
  margin-bottom: 18px;
}

.contact-description {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.contact-cards {
  padding: 18px 0 42px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  border: 1px solid var(--line);
  background: transparent;
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 104px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

a.contact-card:hover {
  transform: translateY(-2px);
  border-color: #c6b8a8;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border: 1px solid #cdbfae;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  font-size: 0.95rem;
}

.contact-card span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8a7c70;
  margin-bottom: 8px;
}

.contact-card strong {
  display: block;
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
}

.contact-cta {
  padding: 10px 0 94px;
}

.contact-cta-box {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 56px 28px;
  max-width: 760px;
  margin: 0 auto;
}

.contact-cta-box h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--white);
}

.contact-cta-box p {
  max-width: 560px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-box {
    padding: 40px 18px;
  }
}
.shop-cta-box .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
