/*
Theme Name: La Clandestina Pizzería
Theme URI: https://www.laclandestinapizzeria.cl/
Author: La Clandestina Pizzería
Description: Tema informativo oficial de La Clandestina Pizzería, Puerto Montt.
Version: 1.3.0
Requires at least: 5.8
Tested up to: 7.0
Requires PHP: 7.2
Text Domain: la-clandestina
*/

:root {
  --ink: #18171a;
  --ink-soft: #29272b;
  --paper: #f5f0e9;
  --paper-bright: #fffdf9;
  --pink: #f30b75;
  --pink-dark: #ce005c;
  --blue: #138df5;
  --line: rgba(24, 23, 26, 0.14);
  --muted: #686168;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 24%, rgba(243, 11, 117, 0.055), transparent 29rem),
    var(--paper);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 233, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 40px, 1280px);
  min-height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(24, 23, 26, 0.1);
  border-radius: 50%;
  background: #fff;
}

.brand-mark img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  transform: scale(1.12);
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 38px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-pink {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(243, 11, 117, 0.24);
}

.button-pink:hover,
.button-pink:focus-visible {
  background: var(--pink-dark);
  box-shadow: 0 18px 36px rgba(243, 11, 117, 0.32);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 13px;
}

.hero {
  width: min(100% - 40px, 1280px);
  min-height: 674px;
  min-height: min(760px, calc(100svh - 86px));
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  margin: 22px auto 0;
  overflow: hidden;
  border-radius: 26px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 28px 80px rgba(24, 23, 26, 0.17);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 96px) clamp(34px, 5.5vw, 76px);
  background:
    radial-gradient(circle at 16% 8%, rgba(19, 141, 245, 0.2), transparent 18rem),
    linear-gradient(145deg, #1c1a1e 0%, #151416 100%);
}

.hero-copy::after {
  position: absolute;
  right: -72px;
  bottom: -110px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 34px rgba(255, 255, 255, 0.025),
    0 0 0 68px rgba(255, 255, 255, 0.018);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(243, 11, 117, 0.14);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(55px, 6.5vw, 94px);
  font-weight: 880;
  line-height: 0.89;
  letter-spacing: -0.073em;
}

.hero h1 em {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 540px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.hero-note span {
  color: #45c881;
  font-size: 9px;
}

.hero-media {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  background: #2f2928;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero:hover .hero-image {
  transform: scale(1.025);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 17, 19, 0.16), transparent 30%),
    linear-gradient(0deg, rgba(18, 17, 19, 0.68), transparent 42%);
  pointer-events: none;
}

.hero-photo-label {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  color: #fff;
}

.hero-photo-label span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
}

.hero-photo-label strong {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-seal {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 124px;
  height: 124px;
  display: grid;
  place-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  background: rgba(24, 23, 26, 0.56);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
  backdrop-filter: blur(8px);
}

.hero-seal span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-seal strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
}

.value-strip {
  width: min(100% - 40px, 1280px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 30px 24px 32px;
  border-bottom: 1px solid var(--line);
}

.value-strip p {
  margin: 0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-strip span {
  color: var(--pink);
}

.section-wrap {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.section-kicker {
  margin: 0 0 24px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: #ff70af;
}

.craft-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
  gap: clamp(70px, 8vw, 130px);
  padding-block: 148px;
}

.craft-copy {
  align-self: center;
}

.craft-copy h2,
.hours-heading h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(48px, 5.3vw, 76px);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.craft-copy h2 em,
.hours-heading h2 em,
.contact-panel h2 em {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.section-lead {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.craft-points {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.craft-points article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.craft-points article > span {
  padding-top: 4px;
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.craft-points h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 850;
}

.craft-points p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.craft-visual {
  position: relative;
  min-height: 730px;
  padding: 0 0 72px 76px;
}

.oven-photo {
  position: relative;
  width: 90%;
  height: 680px;
  margin: 0 0 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background: #d5ccc1;
  box-shadow: 0 26px 70px rgba(24, 23, 26, 0.2);
}

.oven-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(18, 17, 19, 0.7), transparent 44%);
}

.oven-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 48%;
}

.oven-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}

.oven-photo figcaption span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
}

.oven-photo figcaption strong {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-align: right;
  text-transform: uppercase;
}

.craft-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 250px;
  height: 250px;
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--paper);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(24, 23, 26, 0.18);
}

.craft-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-badge {
  position: absolute;
  top: 48px;
  left: 9px;
  z-index: 4;
  width: 140px;
  height: 140px;
  display: grid;
  place-content: center;
  border: 2px solid var(--pink);
  border-radius: 50%;
  background: var(--paper-bright);
  color: var(--pink);
  text-align: center;
  transform: rotate(-10deg);
}

.craft-badge strong {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.craft-badge span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-style: italic;
}

.oven-feature {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  min-height: 610px;
  margin-bottom: 92px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 26px 72px rgba(24, 23, 26, 0.17);
}

.oven-feature-media {
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: #252225;
}

.oven-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  filter: saturate(0.9) contrast(1.05);
}

.oven-feature-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 11, 117, 0.2), transparent 24rem),
    var(--ink);
}

.oven-feature-copy::after {
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 40px rgba(255, 255, 255, 0.018),
    0 0 0 80px rgba(255, 255, 255, 0.012);
}

.oven-feature-copy h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(48px, 5.3vw, 76px);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.oven-feature-copy h2 em {
  color: #ff70af;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.oven-feature-copy > p:not(.section-kicker) {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.75;
}

.oven-feature-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.oven-feature-note span {
  color: var(--pink);
}

.sapore-section {
  padding-block: 58px 88px;
}

.sapore-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
  margin-bottom: 52px;
}

.sapore-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5.3vw, 76px);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.sapore-heading h2 em {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.sapore-heading > p {
  max-width: 470px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.sapore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sapore-card {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #d5ccc1;
  box-shadow: 0 20px 54px rgba(24, 23, 26, 0.14);
}

.sapore-card-wide {
  grid-column: span 2;
  min-height: 460px;
}

.sapore-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(18, 17, 19, 0.76), transparent 52%);
  pointer-events: none;
}

.sapore-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.sapore-card:hover img {
  transform: scale(1.025);
}

.sapore-card figcaption {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}

.sapore-card figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.sapore-card figcaption strong {
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 850;
  letter-spacing: -0.035em;
  text-align: right;
}

.extras-section {
  padding: clamp(52px, 7vw, 86px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 5% 5%, rgba(19, 141, 245, 0.16), transparent 24rem),
    var(--ink);
  color: #fff;
  box-shadow: 0 28px 78px rgba(24, 23, 26, 0.16);
}

.extras-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: clamp(44px, 8vw, 110px);
  margin-bottom: 46px;
}

.extras-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.extras-heading h2 em {
  color: #ff70af;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.extras-heading > p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.extra-card {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #2a272a;
}

.extra-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(18, 17, 19, 0.82), transparent 55%);
  pointer-events: none;
}

.extra-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.extra-card:hover img {
  transform: scale(1.025);
}

.extra-card figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.extra-card figcaption span {
  color: rgba(255, 255, 255, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.extra-card figcaption strong {
  max-width: 245px;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: right;
}

.order-banner {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 44px;
  margin-block: 92px;
  overflow: hidden;
  padding: 54px 62px;
  border-radius: 24px;
  background:
    linear-gradient(105deg, var(--pink) 0%, #ed0b70 72%, #dd075f 100%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(243, 11, 117, 0.2);
}

.order-banner::after {
  position: absolute;
  top: -150px;
  right: 20%;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 36px rgba(255, 255, 255, 0.035);
}

.order-mark {
  position: relative;
  z-index: 1;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 74px;
  font-style: italic;
  line-height: 1;
}

.order-copy {
  position: relative;
  z-index: 1;
}

.order-copy .section-kicker {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.order-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.05em;
}

.order-copy > p:last-child {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.button-dark {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 34px rgba(24, 23, 26, 0.22);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #000;
}

.hours-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(70px, 10vw, 160px);
  padding-block: 62px 144px;
}

.hours-heading {
  align-self: center;
}

.hours-heading > p:last-child {
  max-width: 390px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hours-card {
  padding: 18px 42px 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-bright);
  box-shadow: 0 24px 70px rgba(24, 23, 26, 0.09);
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 27px;
  border-bottom: 1px solid var(--line);
}

.hours-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hours-row strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 25px);
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.hours-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 850;
}

.contact-section {
  width: min(100% - 40px, 1280px);
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  margin: 0 auto 30px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--ink);
}

.contact-image {
  min-height: 710px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 5vw, 74px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(19, 141, 245, 0.2), transparent 18rem),
    var(--ink);
  color: #fff;
}

.contact-panel::after {
  position: absolute;
  right: -130px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 34px rgba(255, 255, 255, 0.018),
    0 0 0 68px rgba(255, 255, 255, 0.012);
}

.contact-logo {
  width: 102px;
  height: 102px;
  margin-bottom: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-panel h2 {
  font-size: clamp(46px, 5vw, 68px);
}

.contact-panel h2 em {
  color: #ff70af;
}

.contact-links {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-links a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  padding-block: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-links span {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-links strong {
  grid-column: 1;
  font-size: 16px;
}

.contact-links b {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--pink);
  font-size: 20px;
}

.site-footer {
  padding-block: 48px 116px;
}

.footer-inner {
  width: min(100% - 40px, 1280px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px 50px;
  margin-inline: auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand span {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.footer-brand em {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.footer-inner nav {
  display: flex;
  gap: 26px;
  font-size: 12px;
  font-weight: 750;
}

.footer-inner > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.floating-order {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 18px 7px 7px;
  border-radius: 999px;
  background: #171717;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease;
}

.floating-order:hover,
.floating-order:focus-visible {
  transform: translateY(-3px);
}

.floating-order span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #28b763;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.content-shell {
  width: min(100% - 40px, 920px);
  min-height: 55vh;
  margin: 72px auto 110px;
}

.entry-card {
  margin-bottom: 28px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-bright);
  box-shadow: 0 18px 52px rgba(24, 23, 26, 0.08);
}

.entry-title {
  margin: 0 0 24px;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.055em;
}

.entry-content {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.entry-content a {
  color: var(--pink);
  text-decoration: underline;
}

.entry-content img {
  height: auto;
  border-radius: 16px;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

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

  .hero-copy {
    min-height: 610px;
  }

  .hero-media {
    min-height: 590px;
  }

  .craft-section {
    grid-template-columns: 1fr;
    gap: 76px;
    padding-block: 110px;
  }

  .craft-copy {
    max-width: 680px;
  }

  .craft-visual {
    width: min(100%, 730px);
    margin-inline: auto;
  }

  .sapore-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .oven-feature {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    min-height: 560px;
  }

  .oven-feature-media {
    min-height: 560px;
  }

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

  .sapore-card-wide {
    grid-column: auto;
    min-height: 330px;
  }

  .extras-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .extra-card {
    min-height: 480px;
  }

  .order-banner {
    grid-template-columns: 120px 1fr;
  }

  .order-banner .button {
    grid-column: 2;
    justify-self: start;
  }

  .hours-section {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hours-heading {
    max-width: 700px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-image {
    min-height: 560px;
  }

  .contact-panel {
    min-height: 650px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    width: min(100% - 24px, 1280px);
    min-height: 74px;
    gap: 12px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-mark img {
    width: 48px;
    height: 48px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    max-width: 86px;
    font-size: 12px;
    line-height: 1.05;
  }

  .button-small {
    min-height: 42px;
    padding-inline: 16px;
  }

  .hero {
    width: min(100% - 20px, 1280px);
    min-height: auto;
    margin-top: 10px;
    border-radius: 20px;
  }

  .hero-copy {
    min-height: auto;
    padding: 58px 25px 50px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    margin-top: 24px;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-seal {
    top: 24px;
    right: 24px;
    width: 100px;
    height: 100px;
  }

  .hero-seal strong {
    font-size: 22px;
  }

  .hero-photo-label {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .value-strip {
    width: min(100% - 24px, 1280px);
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 28px 8px;
  }

  .value-strip span {
    display: none;
  }

  .section-wrap {
    width: min(100% - 24px, 1280px);
  }

  .section-kicker {
    margin-bottom: 19px;
    font-size: 9px;
  }

  .craft-section {
    gap: 56px;
    padding-block: 86px;
  }

  .craft-copy h2,
  .sapore-heading h2,
  .hours-heading h2,
  .contact-panel h2 {
    font-size: clamp(44px, 13.2vw, 61px);
  }

  .section-lead {
    margin-top: 28px;
    font-size: 16px;
  }

  .craft-points {
    margin-top: 36px;
  }

  .craft-visual {
    min-height: 510px;
    padding: 0 0 48px 36px;
  }

  .oven-photo {
    width: 94%;
    height: 490px;
    border-radius: 19px;
  }

  .oven-photo figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .oven-photo figcaption strong {
    max-width: 120px;
  }

  .craft-detail {
    width: 150px;
    height: 150px;
    border-width: 7px;
  }

  .craft-badge {
    top: 24px;
    left: -2px;
    width: 100px;
    height: 100px;
  }

  .craft-badge strong {
    font-size: 9px;
  }

  .craft-badge span {
    font-size: 19px;
  }

  .oven-feature {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-bottom: 66px;
    border-radius: 20px;
  }

  .oven-feature-media {
    min-height: 460px;
    max-height: 520px;
  }

  .oven-feature-copy {
    padding: 48px 25px 54px;
  }

  .oven-feature-copy h2,
  .extras-heading h2 {
    font-size: clamp(42px, 12.5vw, 58px);
  }

  .oven-feature-copy > p:not(.section-kicker) {
    margin-top: 25px;
    font-size: 15px;
  }

  .oven-feature-note {
    align-items: flex-start;
    margin-top: 30px;
    line-height: 1.55;
  }

  .sapore-section {
    padding-block: 24px 66px;
  }

  .sapore-heading {
    margin-bottom: 34px;
  }

  .sapore-heading > p {
    font-size: 15px;
  }

  .sapore-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sapore-card,
  .sapore-card-wide {
    grid-column: 1;
    min-height: 310px;
    border-radius: 19px;
  }

  .sapore-card figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .extras-section {
    width: min(100% - 20px, 1280px);
    padding: 52px 14px 14px;
    border-radius: 20px;
  }

  .extras-heading {
    margin-bottom: 34px;
    padding-inline: 11px;
  }

  .extras-heading > p {
    font-size: 14px;
  }

  .extras-grid {
    gap: 12px;
  }

  .extra-card {
    min-height: 360px;
    border-radius: 16px;
  }

  .order-banner {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-block: 62px;
    padding: 38px 25px;
    border-radius: 20px;
  }

  .order-mark {
    width: 88px;
    height: 88px;
    font-size: 52px;
  }

  .order-copy h2 {
    font-size: 38px;
  }

  .order-banner .button {
    grid-column: 1;
    width: 100%;
  }

  .hours-section {
    gap: 42px;
    padding-block: 24px 88px;
  }

  .hours-card {
    padding: 8px 20px 26px;
    border-radius: 19px;
  }

  .hours-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 22px;
  }

  .hours-row strong {
    font-size: 21px;
  }

  .hours-link {
    gap: 20px;
    line-height: 1.35;
  }

  .contact-section {
    width: min(100% - 20px, 1280px);
    margin-bottom: 12px;
    border-radius: 20px;
  }

  .contact-image {
    min-height: 410px;
  }

  .contact-panel {
    min-height: 590px;
    padding: 54px 24px;
  }

  .contact-logo {
    width: 88px;
    height: 88px;
    margin-bottom: 28px;
  }

  .contact-links {
    margin-top: 38px;
  }

  .contact-links strong {
    font-size: 14px;
  }

  .site-footer {
    padding-block: 40px 112px;
  }

  .footer-inner {
    width: min(100% - 28px, 1280px);
    grid-template-columns: 1fr;
  }

  .footer-inner nav {
    flex-wrap: wrap;
    gap: 15px 22px;
  }

  .footer-inner > p {
    grid-column: 1;
  }

  .floating-order {
    right: 12px;
    bottom: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
