:root {
  --bg: #f6efe6;
  --surface: #fffaf4;
  --surface-strong: #2d2d2d;
  --surface-muted: #efe4d7;
  --text: #2a241f;
  --text-soft: #6d6256;
  --accent: #c19b77;
  --accent-dark: #9f7752;
  --border: rgba(42, 36, 31, 0.12);
  --shadow: 0 24px 60px rgba(43, 32, 18, 0.14);
  --radius: 28px;
  --container: min(1180px, calc(100vw - 2.5rem));
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cabin", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(193, 155, 119, 0.18), transparent 26%),
    linear-gradient(180deg, #f8f3ed 0%, #f4ece2 100%);
}

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

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

a:focus,
button:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(255, 242, 231, 0.9);
  outline-offset: 3px;
}

.brand:focus,
.brand:focus-visible {
  outline: none;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #201915, #4b3728 50%, #201915);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(34, 27, 22, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-static {
  cursor: default;
  user-select: none;
}

.brand img {
  width: 68px;
  height: auto;
}

.brand-copy {
  color: #fff;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-copy span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  flex: 0 0 auto;
}

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

.nav a {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  transition: 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: #1e1713;
  background: #fff2e7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  transition: 180ms ease;
}

.icon-pill svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-pill-google span {
  font-family: "Cabin", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.icon-pill svg .fill {
  fill: currentColor;
  stroke: none;
}

.icon-pill:hover {
  color: #1e1713;
  background: #fff2e7;
}

.showcase-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
}

.reviews-widget {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.showcase-actions {
  display: flex;
  justify-content: center;
  margin-top: 4.4rem;
}

.showcase-actions .cta-row {
  margin-top: 0;
  justify-content: center;
}

.review-stars {
  display: inline-grid;
  gap: 0.35rem;
  min-width: 230px;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #2e241d, #463223);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 32px rgba(42, 29, 20, 0.24);
  max-width: 100%;
}

.review-stars-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 246, 236, 0.72);
}

.review-score {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 0.95;
}

.review-stars-icons {
  color: #f3cc7a;
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.about-outro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, #fff8ef, #f1e4d3);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-outro h2 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  margin-top: 0.7rem;
}

.about-outro p {
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.about-outro-actions {
  display: grid;
  gap: 0.9rem;
}

.hero,
.page-hero {
  position: relative;
  color: #fff;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 13, 9, 0.3) 0%, rgba(20, 13, 9, 0.62) 100%),
    radial-gradient(circle at top right, rgba(193, 155, 119, 0.38), transparent 34%);
}

.hero {
  min-height: 88vh;
  background: center / cover no-repeat url("../img/hero.jpg");
}

.page-hero {
  min-height: 54vh;
  display: grid;
  align-items: end;
  background: center / cover no-repeat url("../img/about-header.png");
}

.page-hero.contact {
  background-image: url("../img/contact-header.jpg");
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
  min-height: calc(88vh - 92px);
  padding: 4.5rem 0 3rem;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #f8dfc6;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  letter-spacing: 0.03em;
}

.hero-copy p,
.page-hero p {
  max-width: 56ch;
  margin: 1.35rem 0 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 250, 244, 0.84);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.86rem;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #d6b190);
  box-shadow: 0 16px 30px rgba(147, 102, 64, 0.32);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

.hero-card {
  justify-self: end;
  width: min(100%, 430px);
  padding: 1.4rem;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 249, 241, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.hero-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
}

.hero-card-copy {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0 0.2rem;
}

.hero-card-copy strong {
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5dcc2;
}

.hero-card-copy span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.section {
  padding: 6rem 0;
}

.section.compact {
  padding: 4.2rem 0;
}

#natale.section {
  padding-top: 3.6rem;
  padding-bottom: 1.2rem;
}

.features-section.section.compact {
  padding-top: 0.9rem;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-top: 0.6rem;
}

.section-header p {
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.06rem;
}

.feature-grid,
.award-grid,
.service-grid,
.cards-3,
.stats-grid,
.contact-grid,
.footer-grid,
.story-grid {
  display: grid;
  gap: 1.5rem;
}

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

.info-card,
.service-card,
.award-card,
.story-card,
.contact-card,
.stat-card {
  padding: 1.7rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.info-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 238, 227, 0.95));
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 1.35rem;
  color: var(--accent-dark);
  background: rgba(193, 155, 119, 0.14);
}

.info-card h3,
.service-card h3,
.award-card h3,
.story-card h3,
.contact-card h3 {
  margin-top: 1rem;
  font-size: 1.9rem;
}

.info-card p,
.service-card p,
.award-card p,
.story-card p,
.contact-card p {
  margin: 0.8rem 0 0;
  line-height: 1.75;
  color: var(--text-soft);
}

.showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 0;
}

.showcase-copy,
.showcase-media {
  min-width: 0;
}

.showcase-copy {
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff9f2;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.showcase-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin-top: 0.85rem;
}

.showcase-copy p {
  margin: 1rem 0 0;
  line-height: 1.8;
  color: var(--text-soft);
}

.showcase-note {
  margin-top: auto;
  min-height: 270px;
  padding: 1.9rem 1.6rem 1.5rem;
  border-radius: 24px;
  background: #fff9f2;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.showcase-note-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.showcase-note h3 {
  font-size: 2rem;
}

.showcase-note p {
  margin: 0.8rem 0 0;
  line-height: 1.75;
  color: var(--text-soft);
}

.showcase-media {
  display: grid;
  gap: 1rem;
}

.showcase-media img,
.award-card img,
.story-card img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.showcase-media img {
  min-height: 240px;
}

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

.award-card {
  display: grid;
  gap: 1.2rem;
}

.award-card img {
  aspect-ratio: 4 / 3;
}

.award-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.award-card h3 {
  font-size: 2.2rem;
}

.promo-band {
  position: relative;
  padding: 7rem 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(24, 17, 12, 0.44), rgba(24, 17, 12, 0.72)),
    center / cover no-repeat url("../img/colomba.jpg");
}

.promo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 40%, rgba(193, 155, 119, 0.18)),
    radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.22));
}

.promo-band .container {
  position: relative;
  z-index: 1;
}

.promo-band h2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-top: 0.7rem;
}

.promo-band p {
  max-width: 60ch;
  margin: 1rem 0 0;
  line-height: 1.85;
  color: rgba(255, 248, 240, 0.86);
}

.story-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.story-card img {
  aspect-ratio: 4 / 3;
}

.service-grid,
.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card img,
.story-card img {
  margin-bottom: 1.1rem;
}

.stats {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(24, 18, 14, 0.76), rgba(24, 18, 14, 0.76)),
    center / cover no-repeat url("../img/footer-bg.jpg");
}

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

.stat-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.shop-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2e241d, #4d392a);
  color: #fff;
}

.shop-banner h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-card form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.field input,
.field textarea {
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item small {
  display: block;
  margin-bottom: 0.35rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-item strong,
.contact-item span,
.contact-item a {
  font-size: 1.06rem;
}

.map-frame {
  min-height: 320px;
  border: 0;
  width: 100%;
  border-radius: 24px;
}

.site-footer {
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(20, 13, 9, 0.78), rgba(20, 13, 9, 0.88)),
    center / cover no-repeat url("../img/footer-bg.jpg");
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(193, 155, 119, 0.18), transparent 30%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  padding: 4rem 0 2rem;
  align-items: start;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 248, 240, 0.78);
  line-height: 1.8;
}

.footer-col h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 248, 240, 0.72);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-inner,
  .showcase,
  .showcase-side,
  .story-grid,
  .contact-grid,
  .footer-grid,
  .about-outro {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .award-grid,
  .service-grid,
  .cards-3,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    justify-self: start;
    width: 100%;
  }

  .footer-meta {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  :root {
    --container: calc(100vw - 2.5rem);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(34, 27, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 3rem 0 2.4rem;
    gap: 1.35rem;
  }

  .section > .container,
  .section.compact > .container,
  .page-hero-inner {
    padding-inline: 0.15rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.8rem);
  }

  .showcase-copy,
  .showcase-note,
  .info-card,
  .service-card,
  .award-card,
  .story-card,
  .contact-card,
  .stat-card {
    padding: 1.35rem;
  }

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

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 2.9rem);
  }

  .feature-grid,
  .award-grid,
  .service-grid,
  .cards-3,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    padding: 0.7rem 0.85rem;
    font-size: 0.72rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }

  .brand img {
    width: 50px;
  }

  .brand-copy strong {
    font-size: 1.1rem;
    line-height: 1;
  }

  .brand-copy span {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .header-inner {
    padding: 0.8rem 0;
    gap: 0.75rem;
  }

  .hero-copy,
  .showcase-copy,
  .showcase-note,
  .showcase-actions,
  .reviews-widget,
  .contact-card,
  .story-card,
  .service-card,
  .award-card,
  .info-card,
  .stat-card,
  .shop-banner,
  .about-outro {
    margin-inline: 0.1rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    font-size: 0.78rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .icon-pill {
    width: 38px;
    height: 38px;
    font-size: 0.68rem;
  }

  .nav a {
    padding: 0.9rem 1rem;
    text-align: center;
  }

  .hero-copy p,
  .page-hero p,
  .showcase-copy p,
  .info-card p,
  .service-card p,
  .award-card p,
  .story-card p,
  .contact-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .review-stars {
    width: 100%;
    min-width: 0;
    padding: 0.75rem 0.9rem;
  }


  .review-stars-label {
    font-size: 0.72rem;
  }

  .review-score {
    font-size: 1.8rem;
  }

  .review-stars-icons {
    font-size: 0.92rem;
    letter-spacing: 0.1em;
  }

  .section {
    padding: 4.8rem 0;
  }

  .section.compact {
    padding: 3.4rem 0;
  }

  .page-hero {
    min-height: 44vh;
  }

  .page-hero-inner.section {
    padding-top: 3.4rem;
    padding-bottom: 2.2rem;
  }

  .hero-inner {
    padding-top: 2.5rem;
  }

  .hero-card {
    padding: 0.95rem;
    border-radius: 22px;
  }

  .hero-card-copy span {
    font-size: 1.6rem;
  }

  .showcase-copy,
  .info-card,
  .service-card,
  .award-card,
  .story-card,
  .contact-card,
  .stat-card {
    padding: 1.1rem;
    border-radius: 22px;
  }

  .showcase-copy h2,
  .promo-band h2,
  .section-header h2 {
    line-height: 1.02;
  }

  .contact-item strong,
  .contact-item span,
  .contact-item a {
    font-size: 0.98rem;
  }

  .map-frame {
    min-height: 260px;
    border-radius: 20px;
  }

  .hero-card img,
  .showcase-media img,
  .award-card img,
  .story-card img {
    min-height: 0;
  }
}
