:root {
  --bg: #fdfdf5;
  --bg-soft: #fff8dc;
  --surface: #ffffff;
  --fg: #274441;
  --muted: #607a77;
  --accent: #15b5b0;
  --accent-deep: #087d79;
  --accent-soft: rgba(21, 181, 176, 0.12);
  --sun: #ffe896;
  --peach: #ffba8a;
  --line: rgba(8, 125, 121, 0.15);
  --cocoa: #285652;
  --container: 1120px;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --radius: 18px;
  --ease: 200ms ease;
  --shadow: 0 18px 45px rgba(39, 68, 65, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(255, 232, 150, 0.22), transparent 55%),
    var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease);
}

::selection {
  background: var(--accent);
  color: var(--fg);
}

h1,
h2,
h3,
.site-brand__text,
.product-card__title,
.shop-intro h1,
.section__header h2,
.hero__headline {
  font-family: var(--display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 600;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-main {
  flex: 1;
}

.muted {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(253, 253, 245, 0.92);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
}

.site-brand__logo,
.site-brand .custom-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.site-brand__text span,
.site-brand__text--hero span {
  color: var(--accent);
  font-style: italic;
}

.site-brand__text--lg {
  font-size: 1.8rem;
  margin: 0 0 0.4rem;
}

.site-brand__text--hero {
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  margin: 0 0 0.75rem;
  animation: rise 0.9s ease both;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--accent-deep);
}

.site-nav a.is-current {
  color: var(--accent-deep);
  font-weight: 600;
}

.site-nav a.is-current::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.22rem auto 0;
  background: var(--peach);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 40%, rgba(255, 232, 150, 0.6) 0%, transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(255, 186, 138, 0.25) 0%, transparent 38%),
    linear-gradient(135deg, #fdfdf5 0%, #f5fcf9 50%, #e3f7f4 100%);
  animation: softPulse 10s ease-in-out infinite alternate;
}

.hero__layout {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  padding: 4rem 0;
}

.hero__content h1 {
  margin: 0 0 1.25rem;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 600;
  color: var(--cocoa);
  animation: rise 0.9s ease 0.12s both;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.12rem;
  animation: rise 0.9s ease 0.22s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s ease 0.32s both;
}

.hero__brand {
  position: relative;
  display: grid;
  place-items: center;
  animation: rise 1s ease 0.18s both;
}

.hero__brand img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  filter: drop-shadow(0 22px 26px rgba(8, 125, 121, 0.2));
}

.hero__brand-ring {
  position: absolute;
  width: 84%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(21, 181, 176, 0.24);
  box-shadow:
    0 0 0 18px rgba(255, 232, 150, 0.16),
    0 0 0 36px rgba(255, 186, 138, 0.08);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.03);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent-deep);
  color: #fff;
  box-shadow: 0 8px 20px rgba(8, 125, 121, 0.2);
}

.btn--primary:hover {
  background: #066965;
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(253, 253, 245, 0.72);
  border-color: rgba(8, 125, 121, 0.3);
  color: var(--accent-deep);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.btn--sm {
  min-height: 2.25rem;
  padding: 0.4rem 0.95rem;
  font-size: 0.85rem;
}

.btn--block {
  width: 100%;
}

.link-accent {
  color: var(--accent-deep);
  font-weight: 600;
}

.link-accent:hover {
  color: var(--accent);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--soft {
  background:
    linear-gradient(135deg, rgba(255, 232, 150, 0.38), rgba(255, 186, 138, 0.2)),
    var(--bg);
}

.section--page {
  padding-top: 2.5rem;
}

.section--narrow {
  max-width: 720px;
}

.section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.section__header h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.invitation {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.invitation h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--cocoa);
}

.invitation > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 0.5rem auto 1.4rem;
  color: var(--muted);
}

.invitation__ornament {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.invitation .btn {
  margin-top: 1rem;
}

/* Brand values */
.values {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

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

.values__grid > div {
  padding: 2.2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.values__grid > div:last-child {
  border-right: 0;
}

.values__mark {
  display: block;
  min-height: 2rem;
  margin-bottom: 0.4rem;
  color: var(--accent);
  font-size: 1.45rem;
}

.values strong {
  display: block;
  color: var(--cocoa);
  font-family: var(--display);
  font-size: 1.25rem;
}

.values p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.empty-box {
  padding: 2.5rem;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

/* Product grid */
.products,
.products-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}

.woocommerce ul.products li.product.product-card,
.woocommerce-page ul.products li.product.product-card {
  float: none;
  width: auto;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(42, 31, 36, 0.12);
}

.product-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-soft);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-card__title {
  margin: 0;
  font-size: 1.35rem;
}

.product-card__sku {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.product-card__price {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: var(--accent-deep);
}

.product-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Shop */
.shop-main {
  padding: 4rem 0;
}

.shop-intro {
  position: relative;
  margin-bottom: 2.5rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(21, 181, 176, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 232, 150, 0.55), transparent 28%),
    linear-gradient(135deg, rgba(21, 181, 176, 0.1), rgba(253, 253, 245, 0.8));
}

.shop-intro h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.shop-intro__count {
  margin: 0 0 1rem;
  color: var(--muted);
}

.shop-intro__lead {
  max-width: 38rem;
  margin: 0.35rem 0 0.5rem;
  color: var(--muted);
}

.catalog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.catalog-cats a {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 600;
}

.catalog-cats a:hover {
  background: var(--accent);
  color: #fff;
}

.shop-empty {
  padding: 3rem 1rem;
  text-align: center;
}

.product-meta-block {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-meta-block span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Contact */
.contact-hero {
  padding: 4.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 232, 150, 0.5), transparent 45%),
    linear-gradient(135deg, rgba(21, 181, 176, 0.12), rgba(255, 186, 138, 0.12));
}

.contact-hero h1 {
  margin: 0;
  color: var(--cocoa);
  font-size: clamp(3rem, 7vw, 5rem);
}

.contact-hero p:last-child {
  max-width: 38rem;
  margin: 0.9rem auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-grid__info {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.contact-grid__info h2 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
}

.contact-phone {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-deep);
}

.contact-panel {
  background:
    linear-gradient(145deg, rgba(255, 232, 150, 0.32), rgba(255, 186, 138, 0.16)),
    var(--surface);
  border: 1px solid rgba(255, 186, 138, 0.5);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.contact-panel__mark {
  color: var(--accent);
  font-size: 2rem;
}

.contact-panel h2 {
  margin: 0.4rem 0 1rem;
  color: var(--cocoa);
  font-size: 2rem;
}

.order-steps {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  counter-reset: order-step;
}

.order-steps li {
  position: relative;
  min-height: 2.25rem;
  margin-bottom: 0.9rem;
  padding-left: 2.75rem;
  counter-increment: order-step;
}

.order-steps li::before {
  content: counter(order-step);
  position: absolute;
  top: 0;
  left: 0;
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #063f3c;
  font-size: 0.8rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links a {
  color: var(--muted);
  font-weight: 500;
}

.social-links a:hover,
.footer-link:hover {
  color: var(--accent-deep);
}

.social-links--solid a {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 3rem 0 1.5rem;
  background: var(--cocoa);
  color: var(--bg);
}

.site-footer .muted {
  color: rgba(253, 253, 245, 0.75);
}

.site-footer__brand {
  max-width: 18rem;
}

.site-footer__brand p {
  margin: 0.8rem 0 0;
  color: rgba(253, 253, 245, 0.78);
}

.site-footer__logo {
  width: 118px;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.15));
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.footer-link {
  display: block;
  margin-bottom: 0.35rem;
}

.site-footer__copy {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(253, 253, 245, 0.65);
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 50;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
}

/* Prose / Woo leftovers */
.prose p {
  margin: 0 0 1rem;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0 3rem;
}

.woocommerce div.product .summary {
  margin: 0;
}

.woocommerce div.product .product_title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0 0 0.5rem;
}

.woocommerce div.product p.price {
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 1.25rem;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-product-gallery__trigger {
  display: none;
}

@media (max-width: 900px) {
  .site-footer__grid,
  .contact-grid,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

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

  .hero,
  .hero__layout {
    min-height: auto;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 4rem 0 3rem;
    text-align: center;
  }

  .hero__content h1,
  .hero__lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__brand img {
    width: min(78vw, 440px);
  }

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

  .values__grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values__grid > div:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.35rem);
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header__inner {
    position: relative;
  }
}

@media (max-width: 640px) {
  .products,
  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .site-brand__logo,
  .site-brand .custom-logo {
    width: 58px;
    height: 58px;
  }

  .site-header__inner {
    min-height: 4.25rem;
  }

  .hero__content h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero__brand img {
    width: min(92vw, 380px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
