:root {
  --cream: #fbf4eb;
  --cream-2: #f3e6d7;
  --ink: #20150f;
  --brown: #7f3400;
  --orange: #bd5a00;
  --gold: #d98b2b;
  --line: rgba(127, 52, 0, .18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(217,139,43,.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(127,52,0,.12), transparent 30%),
    linear-gradient(115deg, rgba(255,255,255,.5) 0 22%, transparent 22% 100%),
    linear-gradient(180deg, #fff8ef 0%, #fbf0e4 48%, #f4e3d0 100%);
  background-attachment: fixed;
  font-family: var(--sans);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: 12px; padding: 12px 18px; border-radius: 8px; color: white; background: var(--brown); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #e28a27; outline-offset: 3px; }
.wrap { width: min(1120px, calc(100% - 64px)); margin-inline: auto; }

.site-header { position: sticky; z-index: 20; top: 0; height: 88px; padding: 12px max(32px, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center; background: rgba(251,244,235,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); box-shadow: 0 4px 18px rgba(67,34,12,.05); }
.brand { display: flex; align-items: center; }
.brand img { display: block; width: 340px; height: auto; }
.header-actions { display: flex; gap: 12px; align-items: center; }
.language { border: 1px solid var(--line); border-radius: 99px; background: rgba(255,255,255,.36); padding: 6px 9px; display: flex; gap: 9px; align-items: center; }
.language button { padding: 5px 4px; border: 0; background: transparent; color: var(--ink); font-weight: 800; cursor: pointer; opacity: .55; }
.language button.is-active { color: var(--brown); opacity: 1; }
.language span { width: 1px; background: var(--brown); }
.menu-toggle { width: 48px; height: 45px; display: none; align-content: center; justify-content: center; gap: 8px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle i { display: block; width: 34px; height: 4px; border-radius: 5px; background: var(--ink); transition: .2s; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 4px; }
.main-nav a { position: relative; padding: 12px 14px; border-radius: 10px; font-size: 18px; font-weight: 700; white-space: nowrap; transition: color .2s, background .2s; }
.main-nav a:hover,.main-nav a.is-current { color: var(--brown); background: var(--cream-2); }
.main-nav a:last-child { margin-left: 8px; padding-inline: 20px; color: white; background: linear-gradient(100deg,#9a3e00,#d16a00); }
.main-nav a:last-child:hover,.main-nav a:last-child.is-current { color: white; background: linear-gradient(100deg,#7d3100,#bd5800); }
body.menu-open .main-nav { display: flex; transform: none; }
body.menu-open { overflow: hidden; }
body.menu-open .menu-toggle i:first-child { transform: translateY(12px) rotate(45deg); }
body.menu-open .menu-toggle i:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle i:last-child { transform: translateY(-12px) rotate(-45deg); }

.page { display: none; animation: reveal .35s ease; }
.page.is-active { display: block; }
.page[data-page="home"] { background: linear-gradient(112deg,rgba(255,248,238,.78) 0 46%,rgba(244,222,198,.72) 46% 100%); }
@keyframes reveal { from { opacity: 0; transform: translateY(8px); } }
.home-hero { height: 520px; margin-top: 24px; border-radius: 28px; overflow: hidden; position: relative; background: linear-gradient(90deg,rgba(8,4,1,.78),rgba(8,4,1,.08) 58%), url("assets/optimized/hero-desktop.jpg") center/cover; color: white; }
.hero-copy { position: absolute; left: 6%; top: 50%; transform: translateY(-50%); max-width: 590px; }
.eyebrow { color: #ecc69e; text-transform: uppercase; letter-spacing: 3px; font-weight: 700; }
.hero-copy h1 { font: 700 clamp(52px,6vw,78px)/.95 var(--serif); text-transform: uppercase; margin: 16px 0 6px; }
.hero-copy em { color: #ce6810; font: italic 700 clamp(32px,3.5vw,48px) var(--serif); }
.hero-links { border-top: 1px solid rgba(255,255,255,.35); padding-top: 25px; font: 700 21px var(--serif); }
.hero-links span { padding: 0 9px; }
.quick-actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; padding-block: 34px 6px; }
.button { min-height: 62px; padding: 0 28px; display: inline-flex; justify-content: center; align-items: center; gap: 12px; border-radius: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 9px 25px rgba(108,43,0,.17); }
.button.primary { color: white; background: linear-gradient(100deg,#9a3e00,#d16a00); }
.button.outline { border: 1px solid var(--ink); }
.page[data-page="home"] .home-reference-actions .button {
  font-weight: 900;
  letter-spacing: 0;
  -webkit-text-stroke: .12px currentColor;
}
.section { padding-block: 46px; }
.section.compact { padding-top: 25px; }
.section-title { text-align: center; margin-bottom: 35px; }
.section-title h1,.section-title h2 { margin: 0 0 7px; font: 700 clamp(32px,3.6vw,46px) var(--serif); }
.section-title span { color: var(--orange); }
.section-title p { max-width: 750px; margin: 22px auto 0; font-size: 20px; line-height: 1.6; }
.flavour-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.flavour-card { aspect-ratio: .92; border-radius: 22px; overflow: hidden; background-size: cover; background-position: center; position: relative; box-shadow: inset 0 -120px 80px rgba(0,0,0,.5); }
.flavour-card:nth-child(1) { background-image: url("assets/flavour-vanilla.jpg"); }
.flavour-card:nth-child(2) { background-image: url("assets/flavour-walnut.jpg"); }
.flavour-card:nth-child(3) { background-image: url("assets/flavour-chocolate.jpg"); }
.flavour-card:nth-child(4) { background-image: url("assets/flavour-cinnamon.jpg"); }
.flavour-card div { position: absolute; inset: auto 14px 14px; padding: 17px 8px; text-align: center; background: rgba(255,245,230,.93); clip-path: polygon(3% 5%,98% 0,95% 93%,4% 100%); }
.flavour-card h3 { margin: 0; font: italic 700 25px var(--serif); }
.flavour-card p { margin: 5px 0 0; }
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-block: 45px; }
.image-card { min-height: 460px; border-radius: 28px; overflow: hidden; position: relative; color: white; background-size: cover; background-position: center; isolation: isolate; box-shadow: 0 18px 42px rgba(69,31,10,.16); transition: transform .25s ease, box-shadow .25s ease; }
.image-card:hover,.image-card:focus-within { transform: translateY(-5px); box-shadow: 0 24px 55px rgba(69,31,10,.22); }
.fixed-card { background-image: url("assets/optimized/puncte-fixe.jpg"); }
.event-card { background-image: url("assets/optimized/evenimente-festivaluri.jpg"); }
@media (min-width: 1051px) {
  .event-card {
    background-size: 112% auto;
    background-position: center 38%;
    background-repeat: no-repeat;
    background-color: #211108;
  }
}
.image-card:before { content:""; position:absolute; inset:55% 0 0; z-index:-1; background: linear-gradient(transparent,rgba(17,7,2,.82)); }
.image-card:after { content:""; position:absolute; left: 20px; right: 20px; bottom: 20px; height: 118px; z-index:-1; border-radius: 18px; background: rgba(27,11,4,.72); border: 1px solid rgba(255,220,174,.14); box-shadow: 0 12px 24px rgba(0,0,0,.22); backdrop-filter: blur(3px); }
.image-card > div { position: absolute; z-index: 1; left: 40px; right: 40px; bottom: 38px; display: grid; grid-template-columns: auto 1fr auto; gap: 4px 14px; align-items: center; }
.round-icon { grid-row: span 2; background: #fff4e4; color: #7f3400; width: 48px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; font-size: 22px; box-shadow: 0 8px 18px rgba(0,0,0,.2); }
.image-card h2 { margin: 0; font: 700 29px var(--serif); letter-spacing: -.2px; }
.image-card b { color: #f4c176; font-size: 14px; letter-spacing: .35px; text-transform: uppercase; }
.image-card p,.image-card .card-action { grid-column: 2; }
.image-card p { max-width: 430px; margin: 5px 0 0; color: #fff6eb; font-size: 14px; line-height: 1.35; }
.image-card .card-action { grid-column: 3; grid-row: 1 / span 2; justify-self: end; align-self: center; border: 1px solid rgba(255,255,255,.52); border-radius: 999px; padding: 10px 15px; background: rgba(255,255,255,.1); text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .5px; white-space: nowrap; }
.image-card:focus-visible { outline: 3px solid #f4c176; outline-offset: 5px; }
.cta { min-height: 175px; margin-block: 34px 65px; padding: 30px 70px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-radius: 30px; background: radial-gradient(circle at 50% 0,#4e2a12,#1c1009 75%); color: white; }
.cta h2 { margin: 0 0 10px; color: #ead2b8; font: 700 36px var(--serif); }
.cta p { margin: 0; font-size: 18px; line-height: 1.5; }
.cta .button { min-width: 210px; white-space: nowrap; }
.home-benefits { margin-top: -26px; margin-bottom: 44px; padding: 32px; border: 1px solid rgba(159,89,34,.15); border-radius: 28px; background: linear-gradient(135deg,rgba(255,250,244,.86),rgba(244,226,204,.62)); box-shadow: 0 18px 42px rgba(80,37,12,.08); }
.home-benefits-title { margin-bottom: 22px; }
.home-benefits-title h2 { font-size: clamp(28px,3vw,40px); }
.home-benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.home-benefit-grid article { min-height: 210px; padding: 24px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid rgba(159,89,34,.14); border-radius: 22px; background: rgba(255,255,255,.46); box-shadow: 0 10px 24px rgba(80,37,12,.06); }
.home-benefit-grid i { width: 62px; aspect-ratio: 1; display: grid; place-items: center; margin-bottom: 15px; border-radius: 50%; color: #a64e0d; background: #f3dfc7; font-style: normal; font-size: 30px; }
.home-benefit-grid h3 { margin: 0 0 10px; color: #2b1308; font: 700 21px/1.08 var(--serif); }
.home-benefit-grid p { margin: 0; font-size: 15px; line-height: 1.55; color: #4a2814; }
.home-footer { margin-top: -28px; margin-bottom: 0; padding: 18px 0 22px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: end; border-top: 1px solid rgba(127,52,0,.18); color: #4a2814; }
.home-footer-info { display: flex; flex-direction: column; justify-content: center; }
.home-footer-info span { margin-bottom: 7px; color: var(--orange); font: 800 11px/1.2 var(--sans); letter-spacing: 2.2px; text-transform: uppercase; }
.home-footer strong { display: block; margin-bottom: 6px; color: #351608; font: 400 20px/1.08 var(--serif); letter-spacing: -.2px; }
.home-footer p { margin: 2px 0; color: #5b321c; font: 400 12.5px/1.45 var(--serif); }
.home-footer-links { display: grid; grid-template-columns: auto auto; justify-content: end; align-items: start; gap: 24px; }
.footer-contact-links,.footer-legal-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-contact-links { min-width: 130px; }
.footer-legal-links { min-width: 250px; }
.home-footer a { color: #6b2c00; font: 700 14px/1.35 var(--serif); letter-spacing: .1px; text-transform: none; text-decoration: none; transition: color .2s; }
.footer-legal-links a { font-weight: 400; }
.home-footer a:hover { color: #bd5a00; }
.home-footer .facebook-icon-link { width: 24px; height: 24px; display: inline-grid; place-items: center; color: #6b2c00; }
.home-footer .facebook-icon-link svg { width: 24px; height: 24px; display: block; }
.home-footer .facebook-icon-link rect { fill: currentColor; }
.home-footer .facebook-icon-link path { fill: #fff; }
.home-footer .facebook-icon-link:hover { color: #bd5a00; }
.breadcrumb { min-height: 70px; display: flex; gap: 18px; align-items: center; border-bottom: 1px solid var(--line); font-weight: 800; }
.breadcrumb a { font-weight: 800; }
.intro { border-bottom: 1px solid var(--line); }
.page[data-page="events"] .intro {
  padding-bottom: 8px;
}
.page[data-page="events"] .intro .section-title {
  margin-bottom: 0;
}
.page[data-page="events"] .intro + .section {
  padding-top: 8px;
}
.event-list { display: grid; gap: 25px; }
.event-list article { min-height: 270px; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.event-list img { width: 100%; height: 100%; object-fit: cover; }
.event-list article > div { align-self: center; padding: 38px 50px; display: grid; grid-template-columns: 65px 1fr; gap: 10px 20px; }
.event-list i,.info-grid i { width: 65px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: var(--brown); background: var(--cream-2); font-style: normal; font-size: 30px; }
.event-list h3 { font: 700 28px var(--serif); }
.event-list p { grid-column: 2; font-size: 18px; line-height: 1.5; }
.events-mobile-link { margin: 0 auto 28px; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 18px; border: 1px solid rgba(127,52,0,.16); border-radius: 22px; background: rgba(255,248,239,.72); box-shadow: 0 14px 32px rgba(80,37,12,.08); }
.events-mobile-link span { color: #4a2814; font: 700 22px/1.25 var(--serif); }
.events-mobile-link .button { min-height: 50px; padding-inline: 22px; border-color: rgba(127,52,0,.28); color: #6b2c00; background: rgba(255,255,255,.48); font-size: 14px; white-space: nowrap; }
.feature-hero { min-height: 490px; background-size: cover; background-position: center; }
.feature-hero > .wrap { min-height: inherit; display: flex; align-items: center; }
.feature-hero > .wrap > div { max-width: 470px; }
.feature-hero h1 { font: 700 clamp(44px,4.7vw,64px)/1.12 var(--serif); margin: 0; }
.feature-hero h1 span { color: #a84b0e; }
.feature-hero p { font-size: 19px; line-height: 1.7; margin: 25px 0 40px; }
.mobile-hero { background-image: linear-gradient(90deg,var(--cream) 27%,rgba(251,244,235,.86) 41%,transparent 62%),url("assets/optimized/evenimente-festivaluri.jpg"); background-position: center right; }
.locations-hero { background-image: none; background-position: initial; }
.info-grid { display: grid; gap: 25px; }
.info-grid.three { grid-template-columns: repeat(3,1fr); }
.info-grid.four { grid-template-columns: repeat(4,1fr); }
.info-grid article { min-height: 200px; padding: 22px; text-align: center; display: grid; place-items: center; align-content: center; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.34); }
.info-grid h3 { margin: 13px 0 5px; font: 700 23px var(--serif); }
.info-grid p { margin: 0; line-height: 1.5; }
.wide-photo { height: 370px; border-radius: 30px; overflow: hidden; position: relative; }
.wide-photo img { width: 100%; height: 100%; object-fit: cover; }
.wide-photo:after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(16,8,3,.95),transparent 70%); }
.wide-photo strong { position: absolute; z-index: 1; left: 6%; top: 50%; transform: translateY(-50%); color:white; width: 320px; font: 700 34px/1.4 var(--serif); }

/* Standuri mobile page */
.mobile-stands-hero { min-height: 520px; margin-top: 26px; display: grid; grid-template-columns: .86fr 1.14fr; gap: 34px; align-items: stretch; }
.mobile-stands-copy { padding: 42px; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(127,52,0,.12); border-radius: 30px; background: linear-gradient(135deg,rgba(255,250,244,.88),rgba(242,222,199,.72)); box-shadow: 0 18px 42px rgba(80,37,12,.09); }
.mobile-stands-copy > span { display: inline-block; margin-bottom: 14px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase; }
.mobile-stands-copy h1 { margin: 0; color: #241208; font: 700 clamp(42px,4.3vw,66px)/1.02 var(--serif); letter-spacing: -.8px; }
.mobile-stands-copy h1 em { display: block; margin-top: 4px; color: #a84b0e; font-style: normal; }
.mobile-stands-copy p { margin: 22px 0 28px; color: #4a2814; font-size: 18px; line-height: 1.65; }
.mobile-stands-copy > div { display: flex; gap: 12px; flex-wrap: wrap; }
.mobile-stands-copy .button { min-width: 160px; min-height: 54px; border-radius: 13px; font-size: 13px; }
.mobile-stands-copy .outline { border-color: rgba(127,52,0,.28); color: var(--brown); background: rgba(255,255,255,.46); }
.mobile-stands-photo { height: auto; min-height: 100%; overflow: hidden; border-radius: 32px; background: #f5eadf; box-shadow: 0 24px 58px rgba(74,35,13,.18); }
.mobile-stands-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (min-width: 1051px) {
  .mobile-stands-hero { grid-template-columns: .92fr 1.08fr; gap: 38px; }
  .mobile-stands-photo { width: 94%; height: 88%; min-height: 0; align-self: center; justify-self: center; }
  .mobile-stands-photo img { transform: scale(.95); border-radius: 27px; }
}
.stand-feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.stand-feature-grid article { min-height: 245px; padding: 24px; border: 1px solid rgba(127,52,0,.13); border-radius: 24px; background: rgba(255,250,244,.58); box-shadow: 0 12px 28px rgba(95,45,12,.06); }
.stand-feature-grid b { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: 50%; color: #fff; background: linear-gradient(135deg,#9a3e00,#d16a00); font-size: 14px; }
.stand-feature-grid h3 { margin: 0 0 10px; color: #351608; font: 700 25px var(--serif); }
.stand-feature-grid p { margin: 0; color: #4a2814; line-height: 1.58; }
.stand-use-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.stand-use-grid article { overflow: hidden; border: 1px solid rgba(127,52,0,.13); border-radius: 26px; background: rgba(255,250,244,.56); box-shadow: 0 14px 32px rgba(80,37,12,.09); }
.stand-use-grid img { width: 100%; height: 250px; object-fit: cover; }
.stand-use-grid div { padding: 22px; }
.stand-use-grid h3 { margin: 0 0 8px; color: var(--brown); font: 700 24px var(--serif); }
.stand-use-grid p { margin: 0; color: #4a2814; line-height: 1.5; }
.stand-gallery-grid { display: flex; gap: 16px; overflow-x: auto; overflow-y: hidden; padding: 4px 4px 18px; scroll-snap-type: x mandatory; scrollbar-color: #bd5a00 rgba(127,52,0,.12); }
.stand-gallery-grid img { flex: 0 0 auto; width: auto; height: 310px; object-fit: contain; border-radius: 24px; background: #f5eadf; box-shadow: 0 14px 34px rgba(80,37,12,.12); scroll-snap-align: start; cursor: zoom-in; }
.gallery-lightbox { position: fixed; z-index: 80; inset: 0; display: none; align-items: center; justify-content: center; padding: 32px; background: rgba(20,9,3,.86); backdrop-filter: blur(8px); }
.gallery-lightbox.is-open { display: flex; }
.gallery-lightbox img { max-width: min(1100px, 94vw); max-height: 86vh; border-radius: 24px; object-fit: contain; box-shadow: 0 24px 70px rgba(0,0,0,.42); }
.gallery-lightbox button { position: absolute; top: 22px; right: 24px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff8ed; background: rgba(255,255,255,.1); font-size: 28px; line-height: 1; cursor: pointer; }
.gallery-lightbox button:hover { background: rgba(255,255,255,.2); }
body.lightbox-open { overflow: hidden; }
.stand-process { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.stand-process article { padding: 24px; border-left: 4px solid #d98b2b; border-radius: 20px; background: rgba(255,255,255,.38); }
.stand-process strong { color: #bd5a00; font: 800 14px var(--sans); letter-spacing: 1px; }
.stand-process h3 { margin: 9px 0 8px; color: #351608; font: 700 23px var(--serif); }
.stand-process p { margin: 0; color: #4a2814; line-height: 1.55; }
.mobile-stands-cta h2 { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.mobile-stands-cta img { width: min(285px,32vw); height: auto; padding: 10px 16px; border: 1px solid rgba(255,232,198,.9); border-radius: 16px; background: #fff8ed; box-shadow: 0 10px 24px rgba(0,0,0,.2), inset 0 1px rgba(255,255,255,.75); }
.map-card { height: 390px; border: 1px solid var(--orange); border-radius: 28px; background: linear-gradient(rgba(255,250,244,.16),rgba(255,250,244,.7)), repeating-linear-gradient(12deg,transparent 0 58px,rgba(255,255,255,.8) 60px 72px), linear-gradient(120deg,#dce9c3,#f2e9d7 60%,#bedbe1); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.map-pin { color: #b45504; font-size: 70px; line-height: .8; text-shadow: 0 5px 0 #fff; }
.map-card strong,.map-card span { padding: 10px 25px; background: rgba(255,250,244,.94); }
.map-card strong { border-radius: 15px 15px 0 0; font-size: 21px; }
.map-card span { border-radius: 0 0 15px 15px; line-height: 1.5; }
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
.delivery { height: 310px; border-radius: 28px; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; }
.delivery strong { font: 800 67px/1 var(--sans); }
.delivery span { background: white; border-radius: 14px; padding: 20px; color: #111; font-weight: 800; text-transform: uppercase; text-align: center; }
.glovo { background: #f8bc1e; color: #119d91; }
.bolt { background: linear-gradient(140deg,#12a653,#24c46e); color: white; }
.phone-card { border: 1px solid #d69a68; border-radius: 25px; overflow: hidden; }
.phone-info { margin: -12px 0 28px; padding: 30px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; border: 1px solid rgba(214,154,104,.75); border-radius: 24px; background: linear-gradient(135deg,rgba(255,248,238,.92),rgba(244,226,204,.78)); box-shadow: 0 14px 34px rgba(95,45,12,.08); }
.phone-info-intro,.phone-info-grid article { min-height: 245px; padding: 23px; display: flex; flex-direction: column; justify-content: flex-start; border: 1px solid rgba(127,52,0,.14); border-radius: 20px; background: rgba(255,255,255,.62); box-shadow: 0 10px 22px rgba(80,37,12,.05); }
.phone-info-intro { max-width: none; margin: 0; text-align: left; }
.phone-info-intro span { margin-bottom: 12px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; }
.phone-info-intro span:empty { display: none; }
.phone-info h3,.phone-info-grid b { display: block; margin: 0 0 12px; color: #6b2c00; font: 700 22px/1.12 var(--serif); }
.phone-info p { margin: 0; color: #4a2814; font-size: 15px; line-height: 1.55; }
.phone-info-grid { display: contents; }
.phone-info-contact { grid-column: 1 / -1; margin-top: 4px; padding-top: 18px; border-top: 1px solid rgba(127,52,0,.15); text-align: center; }
.phone-info-contact p { margin-bottom: 14px; font-weight: 700; }
.phone-info-contact div { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.phone-info-contact .button { min-height: 52px; text-decoration: none; font-size: 14px; }
.phone-info-contact .outline { color: var(--brown); background: rgba(255,255,255,.52); border-color: rgba(127,52,0,.22); }
.phone-info-contact .email-button { text-transform: none; }
.phone-main { min-height: 235px; padding: 35px 50px; display: flex; align-items: center; gap: 38px; }
.phone-main > i { width: 120px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--cream-2); color: var(--brown); font-style: normal; font-size: 55px; }
.phone-main p { font-size: 19px; }
.phone-main div a { font: 700 44px var(--serif); color: var(--brown); }
.phone-main > .button { margin-left: auto; }
.phone-benefits { border-top: 1px solid #d69a68; display: grid; grid-template-columns: repeat(3,1fr); }
.phone-benefits div { padding: 35px 15px; display: grid; justify-items: center; text-align: center; gap: 15px; border-right: 1px solid var(--line); line-height: 1.6; }
.phone-benefits div:last-child { border: 0; }
.phone-benefits i { font-style: normal; color: var(--brown); font-size: 35px; }

/* Puncte fixe page */
.locations-breadcrumb { min-height: 54px; gap: 17px; border: 0; font: 700 15px/1.2 var(--serif); }
.locations-breadcrumb a { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; }
.locations-breadcrumb .home-icon { font-size: 20px; }
.locations-breadcrumb b,
.locations-breadcrumb span { font-weight: 700; }
.locations-hero { position: relative; overflow: hidden; border-top: 1px solid rgba(127,52,0,.1); border-bottom: 1px solid rgba(127,52,0,.1); background: linear-gradient(112deg,rgba(255,248,238,.78) 0 46%,rgba(244,222,198,.72) 46% 100%) !important; }
.locations-hero:before { content: ""; position: absolute; inset: 22px 5vw; border-radius: 38px; background: rgba(255,255,255,.18); box-shadow: inset 0 1px rgba(255,255,255,.55); pointer-events: none; }
.locations-hero-inner { position: relative; z-index: 1; min-height: 480px; display: grid; grid-template-columns: .68fr 1.32fr; gap: 34px; align-items: center; }
.locations-hero-copy { max-width: 470px; padding: 34px 0; }
.locations-hero-copy h1 { margin: 0; font: 700 clamp(42px,4.15vw,62px)/1.04 var(--serif); letter-spacing: -.8px; }
.locations-hero-copy h1 span { display: block; margin-top: 8px; color: #a44d16; white-space: nowrap; }
.locations-hero-copy h1:after { content: ""; display: block; width: 86px; height: 4px; margin-top: 26px; border-radius: 99px; background: linear-gradient(90deg,#a44d16,#d98b2b); box-shadow: 0 6px 16px rgba(164,77,22,.2); }
.locations-hero-copy p { margin: 24px 0 42px; font-size: 18px; line-height: 1.65; }
.locations-hero-copy .button { min-width: 255px; justify-content: flex-start; font-size: 17px; }
.pin-symbol { width: 29px; height: 35px; display: inline-grid; place-items: start center; overflow: hidden; color: white; font-size: 28px; line-height: .75; transform: rotate(180deg); }
.locations-hero-photo { width: 100%; height: clamp(300px,26vw,430px); aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(127,52,0,.14); border-radius: 28px; background: transparent; box-shadow: 0 24px 55px rgba(85,41,12,.18); }
.locations-hero-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 50%; }
.locations-map-section { padding: 32px 0 28px; }
.locations-title { margin-bottom: 16px; }
.locations-title h2 { font-size: 31px; }
.locations-title span { font-size: 16px; }
.location-panel { width: min(980px, 92%); margin: 0 auto; display: grid; grid-template-columns: 1.25fr .9fr; gap: 18px; align-items: stretch; }
.locations-map { width: 100%; min-height: 310px; display: block; position: relative; overflow: hidden; border: 1px solid #bc6a2b; border-radius: 26px; background: #eef3f5; transition: transform .2s, box-shadow .2s; }
.locations-map:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(81,43,17,.12); }
.locations-map img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 49%; transform: scale(1.12); }
.locations-map:after { content:""; position:absolute; inset:0; background: linear-gradient(180deg,rgba(255,255,255,.02),rgba(61,29,8,.04)); pointer-events:none; }
.map-road,.map-river { position:absolute; z-index:1; color:#27211c; font-size:13px; }
.road-main { left:15%; top:30%; transform:rotate(-14deg); font-weight: 800; }
.road-side { right:18%; top:24%; transform:rotate(18deg); color:#9a3e00; font-weight: 800; }
.road-horea { left:12%; bottom:18%; transform:rotate(8deg); color:#5e3219; font-weight: 800; }
.map-river { right:20%; bottom:8%; z-index:2; color:#237c9c; transform:rotate(-4deg); }
.native-map-pin { display:none; }
.map-location-card { position:absolute; z-index:3; left:18px; bottom:18px; min-width:min(330px,calc(100% - 36px)); padding:12px 18px; display:grid; gap:6px; border:1px solid rgba(188,106,43,.45); border-radius:16px; color:#20150f; background:rgba(255,250,244,.95); text-align:left; box-shadow:0 10px 24px rgba(48,24,8,.12); }
.map-location-card strong { font-size:17px; }
.map-location-card small { font-size:14px; line-height:1.35; }
.location-details { padding: 28px; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(188,106,43,.35); border-radius: 26px; background: linear-gradient(145deg,rgba(255,250,244,.96),rgba(242,224,202,.82)); box-shadow: 0 14px 30px rgba(79,37,12,.08); }
.location-details .eyebrow { display: block; margin-bottom: 10px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.location-details h3 { margin: 0 0 10px; color: var(--brown); font: 700 29px var(--serif); }
.location-details p { margin: 0; color: #3f2415; font-size: 17px; line-height: 1.5; }
.location-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.location-chips span { padding: 8px 11px; border-radius: 999px; color: #6d2d00; background: rgba(255,255,255,.72); font-size: 13px; font-weight: 700; }
.location-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.location-actions .button { min-height: 50px; padding-inline: 18px; font-size: 13px; }
.location-actions .outline { color: var(--brown); background: rgba(255,255,255,.55); border-color: rgba(127,52,0,.24); }
.locations-cta { min-height: 156px; margin-block: 0 8px; padding: 22px 54px; display: grid; grid-template-columns: 60px 1fr auto 60px; gap: 26px; align-items: center; border-radius: 31px; color: white; background: radial-gradient(circle at 50% 0,#43230e,#190d06 78%); }
.locations-cta h2 { margin: 0 0 8px; color: #ecd3ba; font: 700 39px var(--serif); }
.locations-cta p { margin: 0; font-size: 16px; line-height: 1.5; }
.locations-cta .button { min-width: 268px; font-size: 17px; }
.locations-cta .wheat { color: #b45400; font-size: 55px; transform: rotate(180deg); }
.locations-cta .wheat-right { transform: rotate(0); }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: grid; }
  .main-nav { position: fixed; left: 0; right: 0; top: 88px; width: 100%; height: auto; max-height: calc(100dvh - 88px); padding: 24px 32px; display: none; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 6px; overflow-y: auto; background: #26160c; color: #fff7ee; transform: none; transition: none; box-shadow: 0 14px 30px rgba(0,0,0,.18); }
  body.menu-open .main-nav { display: flex; transform: none; }
  .main-nav a { padding: 17px 4px; border-radius: 0; font: 700 23px var(--serif); border-bottom: 1px solid rgba(255,255,255,.13); }
  .main-nav a:hover,.main-nav a.is-current { color: #fff7ee; background: transparent; }
  .main-nav a:last-child { margin: 14px 0 0; padding: 16px 20px; border: 0; border-radius: 12px; text-align: center; }
  .phone-info { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 800px) {
  body,
  button,
  input,
  textarea,
  select,
  .main-nav a,
  .button,
  .delivery,
  .home-footer,
  .page {
    font-family: Georgia, "Times New Roman", serif;
  }
  .wrap { width: min(100% - 32px, 640px); }
  .site-header { height: 88px; padding: 13px 0 13px 12px; grid-template-columns: minmax(0,1fr) auto; gap: 4px; }
  .brand { min-width: 0; overflow: visible; }
  .brand img { width: min(220px, 52vw); max-width: none; }
  .header-actions { justify-self: end; gap: 4px; }
  .language { padding: 8px 10px; gap: 7px; font-size: 12px; }
  .menu-toggle { width: 44px; padding: 0; display: grid; place-content: center; justify-items: center; }
  .menu-toggle i { width: 34px; background: #20150f; }
  .main-nav { position: fixed; left: 0; right: 0; top: 88px; width: 100%; height: auto; max-height: calc(100dvh - 88px); padding: 24px 24px 28px; display: none; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 6px; overflow-y: auto; background: #26160c; color: #fff7ee; transform: none; transition: none; box-shadow: 0 14px 30px rgba(0,0,0,.18); }
  body.menu-open .main-nav { display: flex; transform: none; }
  .main-nav a { padding: 17px 4px; border-radius: 0; font: 700 23px var(--serif); border-bottom: 1px solid rgba(255,255,255,.13); }
  .main-nav a:hover,.main-nav a.is-current { color: #fff7ee; background: transparent; }
  .main-nav a:last-child { margin: 14px 0 0; padding: 16px 20px; border: 0; border-radius: 12px; text-align: center; }
  .home-hero { height: 590px; margin-top: 16px; background-position: 62% center; border-radius: 25px; }
  .page[data-page="home"] .home-reference-hero {
    width: min(100% - 32px,640px);
    height: auto;
    min-height: 0;
    aspect-ratio: 410 / 237;
    margin-inline: auto;
    background-color: #160b05;
    background-image:
      linear-gradient(90deg,rgba(12,5,1,.78) 0%,rgba(12,5,1,.46) 36%,rgba(12,5,1,.08) 70%,rgba(12,5,1,0) 100%),
      url("assets/optimized/hero-mobile.jpg?v=2");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .page[data-page="home"] .home-reference-hero .hero-copy {
    display: block;
    left: 5%;
    top: auto;
    bottom: 8%;
    width: 48%;
    max-width: none;
    transform: none;
    text-shadow: 0 3px 14px rgba(0,0,0,.55);
  }
  .page[data-page="home"] > .section {
    padding-top: 0;
  }
  .page[data-page="home"] > .section > .section-title {
    min-height: 0;
    margin: 14px 0 0;
    padding-bottom: 10px;
  }
  .page[data-page="home"] .home-title-ornament {
    display: block !important;
    margin-top: 6px;
    color: #c75a00 !important;
    font: 400 18px/24px Georgia, "Times New Roman", serif;
    letter-spacing: 3px;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .page[data-page="home"] .home-reference-hero .eyebrow {
    display: block;
    margin: 0 0 5px;
    color: #e3a064;
    font: 700 clamp(7px,1.8vw,10px)/1.1 var(--serif);
    letter-spacing: clamp(1px,.45vw,2.4px);
    text-transform: uppercase;
  }
  .page[data-page="home"] .home-reference-hero .hero-copy h1 {
    margin: 0 0 7px;
    color: #fff8ed;
    font-size: clamp(21px,6.9vw,38px);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -.03em;
    text-transform: none;
  }
  .page[data-page="home"] .home-reference-hero .hero-copy h1 span {
    display: block;
  }
  .page[data-page="home"] .home-reference-hero .hero-copy em {
    display: block;
    margin-top: 3px;
    width: max-content;
    color: #f09a4a;
    font-size: clamp(18px,5.6vw,31px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.02em;
    transform: rotate(-1deg);
    transform-origin: left center;
  }
  .page[data-page="home"] .home-reference-hero .hero-copy em::after {
    content: "";
    display: block;
    width: 82%;
    height: 2px;
    margin: 3px 0 0 3px;
    border-radius: 100%;
    background: currentColor;
    transform: rotate(-2deg);
    opacity: .85;
  }
  .page[data-page="home"] .home-reference-hero .hero-links {
    width: 100%;
    margin: 10px 0 0;
    padding-top: 8px;
    border-top-color: rgba(255,255,255,.48);
    color: #fff8ed;
    font: 700 clamp(9px,2.7vw,15px)/1.2 var(--serif);
    white-space: nowrap;
  }
  .page[data-page="home"] .home-reference-hero .hero-links span {
    padding: 0 5px;
  }
  .hero-copy { inset: auto 22px 30px; transform: none; }
  .eyebrow { display: none; }
  .hero-copy h1 { font-size: 55px; }
  .hero-copy em { font-size: 37px; }
  .hero-links { font-size: 16px; }
  .quick-actions { gap: 10px; padding-top: 18px; }
  .home-reference-actions {
    grid-template-columns: repeat(3,minmax(0,1fr));
    align-items: stretch;
  }
  .home-reference-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    padding: 8px 5px;
    line-height: 1.05;
    text-align: center;
    font-size: 14px;
    letter-spacing: .2px;
  }
  .button { min-height: 54px; padding: 0 16px; font-size: 14px; }
  .section { padding-block: 42px; }
  .section-title { margin-bottom: 25px; }
  .section-title h1,.section-title h2 { font-size: 33px; }
  .section-title p { font-size: 17px; }
  .page[data-page="events"] .intro {
    padding-bottom: 8px;
  }
  .page[data-page="events"] .intro .section-title {
    margin-bottom: 0;
  }
  .page[data-page="events"] .intro + .section {
    padding-top: 8px;
  }
  .flavour-grid {
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
  }
  .flavour-card {
    aspect-ratio: .72;
    border-radius: 12px;
  }
  .flavour-card div {
    inset: auto 4px 5px;
    padding: 8px 2px;
  }
  .flavour-card h3 {
    font-size: clamp(11px,3.4vw,16px);
    line-height: 1;
  }
  .flavour-card p {
    margin-top: 3px;
    font-size: clamp(8px,2.3vw,11px);
    line-height: 1.1;
  }
  .flavour-card h3 { font-size: 21px; }
  .split-cards,.delivery-grid { grid-template-columns: 1fr; }
  .page[data-page="home"] .split-cards {
    gap: 16px;
  }
  .page[data-page="home"] .image-card {
    min-height: 0;
    aspect-ratio: 410 / 237;
  }
  .page[data-page="home"] .fixed-card,
  .page[data-page="home"] .event-card {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .page[data-page="home"] .fixed-card,
  .page[data-page="home"] .event-card {
    background-size: cover;
    aspect-ratio: 1.18;
  }
  .page[data-page="home"] .fixed-card { background-color: #d9e8f1; }
  .page[data-page="home"] .event-card { background-size: 116% auto; background-position: center 36%; background-color: #211108; }
  .page[data-page="home"] .image-card > div {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 34px 1fr auto;
    gap: 2px 9px;
  }
  .page[data-page="home"] .image-card .round-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .page[data-page="home"] .image-card h2 {
    font-size: clamp(19px,5.4vw,24px);
  }
  .page[data-page="home"] .image-card b {
    font-size: 11px;
  }
  .page[data-page="home"] .image-card p {
    display: none;
  }
  .page[data-page="home"] .image-card .card-action {
    grid-column: 3;
    grid-row: 1 / span 2;
    padding: 8px 10px;
    font-size: 10px;
  }
  .page[data-page="home"] .image-card::before {
    inset: 48% 0 0;
  }
  .page[data-page="home"] .image-card::after {
    left: 8px;
    right: 8px;
    bottom: 8px;
    height: 64px;
    border-radius: 14px;
  }
  .cta { padding: 30px 25px; flex-direction: column; align-items: stretch; text-align: center; }
  .cta h2 { font-size: 30px; }
  .home-benefits { margin-top: -24px; margin-bottom: 32px; padding: 22px 16px; border-radius: 24px; }
  .home-benefit-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .home-benefit-grid article { min-height: 190px; padding: 20px 10px; }
  .home-benefit-grid h3 { font-size: 19px; }
  .home-benefit-grid p { font-size: 14px; }
  .home-footer { grid-template-columns: 1fr; margin-top: -30px; padding: 18px 0 22px; text-align: center; gap: 12px; }
  .home-footer-links { grid-template-columns: 1fr; justify-content: center; justify-items: center; gap: 14px; }
  .footer-contact-links,.footer-legal-links { align-items: center; min-width: 0; }
  .home-footer a { width: auto; }
  .home-footer .facebook-icon-link { width: 24px; height: 24px; flex: 0 0 24px; }
  .home-footer .facebook-icon-link svg { width: 24px; height: 24px; }
  .breadcrumb { min-height: 58px; font-size: 14px; }
  .event-list article { grid-template-columns: 1fr; }
  .event-list img { height: 230px; }
  .event-list article > div { padding: 24px; grid-template-columns: 55px 1fr; }
  .event-list i { width: 55px; }
  .event-list h3 { font-size: 23px; }
  .events-mobile-link { margin-bottom: 20px; padding: 20px 16px; flex-direction: column; text-align: center; }
  .events-mobile-link span { font-size: 21px; }
  .events-mobile-link .button { width: 100%; }
  .feature-hero { min-height: 640px; background-position: 67% center; position: relative; }
  .feature-hero:after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,var(--cream) 2%,rgba(251,244,235,.92) 35%,transparent 75%); }
  .feature-hero > .wrap { position:relative; z-index:1; align-items:flex-end; padding-bottom:45px; }
  .mobile-hero { background-image: var(--mobile-bg); }
  .mobile-hero { --mobile-bg: url("assets/optimized/evenimente-festivaluri.jpg"); }
  .feature-hero h1 { font-size: 45px; }
  .feature-hero p { font-size: 17px; margin: 17px 0 25px; }
  .mobile-stands-hero { min-height: 0; grid-template-columns: 1fr; gap: 18px; margin-top: 18px; }
  .mobile-stands-photo { grid-row: 1; height: auto; aspect-ratio: 4 / 3; border-radius: 24px; }
  .mobile-stands-copy { grid-row: 2; padding: 26px 22px; border-radius: 24px; text-align: center; }
  .mobile-stands-copy h1 { font-size: clamp(36px,9vw,48px); }
  .mobile-stands-copy p { margin: 16px 0 22px; font-size: 16px; line-height: 1.55; }
  .mobile-stands-copy > div { justify-content: center; }
  .stand-feature-grid,.stand-use-grid,.stand-process { grid-template-columns: 1fr; gap: 12px; }
  .stand-use-grid img { height: 230px; }
  .stand-gallery-grid { gap: 12px; padding-bottom: 16px; }
  .stand-gallery-grid img { flex-basis: auto; width: auto; max-width: 86vw; height: 250px; object-fit: contain; }
  .info-grid.three,.info-grid.four { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .info-grid article { min-height: 210px; padding: 16px 10px; }
  .info-grid h3 { font-size: 19px; }
  .info-grid p { font-size: 14px; }
  .wide-photo { height: 450px; }
  .wide-photo strong { left: 30px; right: 30px; width: auto; font-size: 30px; }
  .location-panel { width: 100%; grid-template-columns: 1fr; gap: 12px; }
  .locations-map { min-height: 0; aspect-ratio: 1018 / 650; border-radius: 20px; }
  .locations-map img { object-fit: contain; object-position: center; transform: none; background: #eef3f5; }
  .location-details { order: -1; padding: 22px 18px; text-align: center; }
  .location-details .eyebrow { font-size: 11px; letter-spacing: 1.6px; }
  .location-details h3 { font-size: 25px; }
  .location-details p { font-size: 15px; }
  .location-chips,.location-actions { justify-content: center; }
  .location-chips { margin: 14px 0 18px; }
  .location-chips span { font-size: 12px; padding: 7px 9px; }
  .location-actions .button { width: 100%; }
  .map-card { height: 330px; }
  .delivery { height: 260px; padding: 30px; }
  .delivery strong { font-size: 56px; }
  .phone-main { padding: 28px 22px; flex-direction: column; text-align: center; gap: 18px; }
  .phone-info { margin: -8px 0 20px; padding: 18px 14px; grid-template-columns: 1fr; gap: 12px; }
  .phone-info-intro,.phone-info-grid article { min-height: 0; padding: 18px 16px; text-align: center; }
  .phone-info h3,.phone-info-grid b { font-size: 23px; }
  .phone-info p { font-size: 15px; }
  .phone-info-contact div { flex-direction: column; }
  .phone-main > i { width: 90px; font-size: 42px; }
  .phone-main div a { font-size: 34px; }
  .phone-main > .button { margin: 0; }
  .phone-benefits { grid-template-columns: 1fr; }
  .phone-benefits div { border-right: 0; border-bottom: 1px solid var(--line); }
  .locations-hero-inner { width: 100%; min-height: 0; grid-template-columns: 1fr; align-content: start; }
  .locations-hero { background: none !important; }
  .locations-hero:before { display: none; }
  .locations-hero-photo { grid-row: 1; width: min(100% - 32px,640px); height: auto; max-height: none; margin: 0 auto; aspect-ratio: 1200 / 1121; border-radius: 24px; background: #f5eadf; }
  .locations-hero-photo img { object-fit: contain; object-position: center; }
  .locations-hero-copy { grid-row: 2; width: min(100% - 32px,640px); margin: 0 auto; padding: 22px 0 12px; text-align: center; }
  .locations-hero-copy h1 { font-size: 38px; }
  .locations-map-section { padding-top: 24px; }
  .map-road,.map-river { display: none; }
  .map-location-card { left: 14px; bottom: 14px; min-width: min(270px,calc(100% - 28px)); padding: 10px 13px; }
  .locations-cta { margin-bottom: 16px; padding: 30px 24px; display: flex; flex-direction: column; text-align: center; }
  .locations-cta .wheat { display: none; }
  .locations-cta h2 { font-size: 33px; }
  .locations-cta .button { min-width: min(100%,280px); }
}

@media (max-width: 440px) {
  .brand img { width: min(190px, 49vw); }
  .language { padding: 8px 9px; }
  .hero-copy h1 { font-size: 47px; }
  .hero-links span { padding: 0 3px; }
  .quick-actions .button { padding: 8px 4px; }
  .home-reference-actions .button {
    font-size: clamp(11px,3.25vw,13px);
    letter-spacing: 0;
    padding-inline: 2px;
  }
  .image-card > div { left: 22px; right: 22px; }
  .image-card h2 { font-size: 29px; }
  .info-grid.three,.info-grid.four { grid-template-columns: 1fr; }
  .home-benefit-grid { grid-template-columns: 1fr; }
  .home-benefit-grid article { min-height: 170px; }
  .locations-hero-photo { max-height: none; }
  .locations-hero-copy h1 { font-size: 36px; }
  .locations-hero-copy h1 span { font-size: 32px; }
  .map-road { font-size: 9px; }
  .mobile-stands-copy { padding: 22px 16px; }
  .mobile-stands-copy h1 { font-size: 34px; }
  .mobile-stands-copy .button { width: 100%; }
  .mobile-stands-cta h2 { justify-content: center; }
  .mobile-stands-cta img { width: min(240px,72vw); margin: 0 auto; }
  .stand-use-grid img { height: 220px; }
  .stand-gallery-grid img { width: auto; max-width: 86vw; height: 220px; object-fit: contain; }
  .map-location-card { min-width: min(230px,calc(100% - 24px)); }
  .map-location-card strong { font-size: 14px; }
  .map-location-card small { font-size: 11px; }
  .locations-map { aspect-ratio: 1018 / 650; }
  .locations-hero-copy .button { min-width: 0; width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Desktop home viewport matched to the supplied reference */
@media (min-width: 1051px) {
  body.home-route { background: #fcf5ec; }

  .site-header {
    height: 90px;
    padding: 10px 46px;
    grid-template-columns: 282px 1fr 235px;
    gap: 20px;
    background: #fcf5ec;
    border-bottom-color: #e7d7c8;
    box-shadow: none;
  }

  .brand img { width: 317px; }

  .main-nav { gap: 2px; }
  .main-nav a {
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 17px;
  }
  .main-nav a:hover,
  .main-nav a.is-current {
    color: #7f3400;
    background: #f3e5d4;
  }
  .main-nav a:last-child {
    min-width: 109px;
    margin-left: 8px;
    padding-inline: 18px;
    text-align: center;
    color: #fff;
    background: linear-gradient(100deg,#a94300,#d46900);
  }

  .header-actions { justify-content: flex-end; }
  .language {
    padding: 9px 14px;
    gap: 9px;
    background: transparent;
    font-size: 18px;
  }

  .page[data-page="home"] .home-reference-hero {
    width: calc(100vw - 5cm);
    max-width: none;
    height: clamp(360px, calc(100dvh - 315px), 560px);
    aspect-ratio: auto;
    container-type: inline-size;
    margin-inline: auto;
    margin-top: 24px;
    border-radius: 27px;
    background-image:
      linear-gradient(90deg,rgba(12,5,1,.82) 0%,rgba(12,5,1,.58) 28%,rgba(12,5,1,.16) 55%,rgba(12,5,1,0) 76%),
      url("assets/optimized/hero-desktop.jpg");
    background-color: #160b05;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .page[data-page="home"] .home-reference-hero .hero-copy {
    display: block;
    left: 4%;
    top: auto;
    bottom: 5%;
    width: 46%;
    max-width: none;
    transform: none;
    text-shadow: 0 3px 18px rgba(0,0,0,.42);
  }
  .page[data-page="home"] .home-reference-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .8cqw;
    margin: 0 0 1cqw;
    color: #e3a064;
    font: 700 1.35cqw/1.1 var(--serif);
    letter-spacing: .3cqw;
    text-transform: uppercase;
  }
  .page[data-page="home"] .home-reference-hero .eyebrow::before,
  .page[data-page="home"] .home-reference-hero .eyebrow::after {
    content: "";
    width: 2.2cqw;
    height: 1px;
    background: currentColor;
    opacity: .8;
  }
  .page[data-page="home"] .home-reference-hero .hero-copy h1 {
    margin: 0 0 .9cqw;
    color: #fff8ed;
    font-size: 5.7cqw;
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -.16cqw;
    text-transform: none;
  }
  .page[data-page="home"] .home-reference-hero .hero-copy h1 span {
    display: block;
  }
  .page[data-page="home"] .home-reference-hero .hero-copy em {
    display: block;
    margin-top: .25cqw;
    width: max-content;
    color: #f09a4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4.8cqw;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.08cqw;
    transform: rotate(-1deg);
    transform-origin: left center;
    text-shadow:
      0 1px 0 #3b1603,
      0 2px 2px #3b1603,
      0 4px 16px rgba(0,0,0,.7);
  }
  .page[data-page="home"] .home-reference-hero .hero-copy em::after {
    content: "";
    display: block;
    width: 82%;
    height: .22cqw;
    margin: .35cqw 0 0 .4cqw;
    border-radius: 100%;
    background: currentColor;
    transform: rotate(-2deg);
    opacity: .85;
  }
  .page[data-page="home"] .home-reference-hero .hero-links {
    width: 100%;
    margin: 2.5cqw 0 0;
    padding-top: 1.5cqw;
    border-top-color: rgba(255,255,255,.48);
    color: #fff8ed;
    font-size: 2.8cqw;
    line-height: 1.2;
    white-space: nowrap;
  }
  .page[data-page="home"] .home-reference-hero .hero-links span {
    padding: 0 1.2cqw;
  }

  .page[data-page="home"] .home-reference-actions {
    width: min(calc(100vw - 5cm), 1240px);
    max-width: none;
    margin-inline: auto;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(106,53,18,.12);
    border-radius: 20px;
    background: rgba(255,250,243,.8);
    box-shadow:
      0 12px 30px rgba(81,39,12,.09),
      inset 0 1px rgba(255,255,255,.8);
  }
  .page[data-page="home"] .home-reference-actions .button {
    min-height: 58px;
    padding-inline: 18px;
    border-radius: 13px;
    font-size: 18px;
    letter-spacing: .8px;
    box-shadow: none;
  }
  .page[data-page="home"] .home-reference-actions .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(93,43,13,.12);
  }
  .page[data-page="home"] .home-reference-actions .primary {
    border-color: #c75a00;
    background: linear-gradient(135deg,#d96a0b,#b74600);
    box-shadow: 0 9px 22px rgba(174,68,0,.24);
  }
  .page[data-page="home"] .home-reference-actions .outline {
    border-color: rgba(73,35,12,.18);
    color: #45200b;
    background: rgba(255,255,255,.62);
  }
  .page[data-page="home"] > .section {
    width: calc(100vw - 5cm);
    max-width: none;
    margin-inline: auto;
    padding-top: 0;
    padding-bottom: 46px;
  }
  .page[data-page="home"] > .section .section-title h2 {
    font-size: 46px;
  }
  .page[data-page="home"] > .section .section-title {
    min-height: max(
      96px,
      calc(100dvh - 90px - 24px - clamp(360px, calc(100dvh - 315px), 560px) - 12px - 62px - 10px)
    );
    padding-top: 28px;
    margin-bottom: 3mm;
    padding-bottom: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .page[data-page="home"] > .section .section-title span {
    display: block;
    margin-top: 6px;
    color: #c75a00;
    font-size: 18px;
    letter-spacing: 4px;
  }
  .page[data-page="home"] .home-title-ornament {
    display: block !important;
    min-height: 24px;
    margin-bottom: 3mm;
    color: #c75a00 !important;
    font: 400 20px/24px Georgia, "Times New Roman", serif;
    letter-spacing: 3px;
    opacity: 1;
    visibility: visible;
  }
  .page[data-page="home"] > .section .flavour-grid {
    width: min(1180px, 88%);
    margin: 0 auto;
    gap: 20px;
    scroll-margin-top: 100px;
  }
  .page[data-page="home"] .flavour-card {
    aspect-ratio: 1.2;
    border: 1px solid rgba(89,42,11,.14);
    border-radius: 18px;
    box-shadow:
      0 14px 32px rgba(70,35,13,.12),
      inset 0 -80px 60px rgba(20,8,1,.24);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .page[data-page="home"] .flavour-card:hover {
    transform: translateY(-5px);
    box-shadow:
      0 20px 40px rgba(70,35,13,.18),
      inset 0 -80px 60px rgba(20,8,1,.2);
  }
  .page[data-page="home"] .flavour-card div {
    inset: auto 12px 12px;
    padding: 11px 10px 10px;
    border: 1px solid rgba(155,83,26,.16);
    border-radius: 12px;
    background: rgba(255,248,237,.94);
    box-shadow: 0 7px 18px rgba(24,10,2,.14);
    clip-path: none;
    backdrop-filter: blur(7px);
  }
  .page[data-page="home"] .flavour-card h3 {
    color: #512308;
    font-size: 22px;
    line-height: 1;
  }
  .page[data-page="home"] .flavour-card p {
    margin-top: 4px;
    color: #6c3b1c;
    font-size: 13px;
  }
  .page[data-page="home"] > .split-cards,
  .page[data-page="home"] > .cta,
  .page[data-page="home"] > .home-footer {
    width: calc(100vw - 5cm);
    max-width: none;
    margin-inline: auto;
  }
  .page[data-page="home"] > .cta {
    position: relative;
    min-height: 150px;
    margin-block: 42px 64px;
    padding: 30px 48px 30px 56px;
    overflow: hidden;
    border: 1px solid rgba(225,151,79,.28);
    border-radius: 24px;
    background:
      radial-gradient(circle at 82% 0,rgba(185,83,16,.24),transparent 34%),
      linear-gradient(115deg,#1c0d06 0%,#3a190b 52%,#231007 100%);
    box-shadow:
      0 18px 45px rgba(73,31,8,.16),
      inset 0 1px rgba(255,255,255,.07);
  }
  .page[data-page="home"] > .cta::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 27px;
    bottom: 27px;
    width: 3px;
    border-radius: 99px;
    background: linear-gradient(#e49a50,#9f4209);
  }
  .page[data-page="home"] > .cta::after {
    content: "◆";
    position: absolute;
    right: 25%;
    color: rgba(239,174,109,.13);
    font-size: 92px;
    transform: rotate(18deg);
  }
  .page[data-page="home"] > .cta > * {
    position: relative;
    z-index: 1;
  }
  .page[data-page="home"] > .cta h2 {
    margin-bottom: 7px;
    color: #f4d4b0;
    font-size: 34px;
    letter-spacing: -.3px;
  }
  .page[data-page="home"] > .cta p {
    color: #fff8ef;
    font-size: 16px;
    opacity: .9;
  }
  .page[data-page="home"] > .cta .button {
    min-width: 220px;
    min-height: 58px;
    border: 1px solid rgba(255,207,157,.28);
    border-radius: 12px;
    background: linear-gradient(135deg,#d76508,#ae4000);
    box-shadow: 0 10px 24px rgba(0,0,0,.24);
    font-size: 15px;
    white-space: nowrap;
  }
}

@media (min-width: 1051px) and (max-width: 1440px) {
  .site-header {
    height: 78px;
    padding: 8px 34px;
    grid-template-columns: 238px 1fr 190px;
    gap: 14px;
  }

  .brand img { width: 269px; }

  .main-nav { gap: 1px; }
  .main-nav a {
    padding: 11px 12px;
    font-size: 16px;
  }
  .main-nav a:last-child {
    min-width: 98px;
    margin-left: 5px;
    padding-inline: 15px;
  }

  .language {
    padding: 8px 12px;
    font-size: 16px;
  }

  .page[data-page="home"] .home-reference-hero,
  .page[data-page="home"] .home-reference-actions,
  .page[data-page="home"] > .section,
  .page[data-page="home"] > .split-cards,
  .page[data-page="home"] > .cta {
    width: min(92vw, 1240px);
  }

  .page[data-page="home"] .home-reference-hero {
    height: clamp(330px, calc(100dvh - 285px), 480px);
    margin-top: 18px;
    border-radius: 24px;
  }

  .page[data-page="home"] .home-reference-actions {
    padding: 8px;
  }
  .page[data-page="home"] .home-reference-actions .button {
    min-height: 54px;
    padding-inline: 4px;
    font-size: 14px;
    letter-spacing: .15px;
    white-space: nowrap;
  }

  .page[data-page="home"] > .section {
    padding-top: 0;
  }
  .page[data-page="home"] > .section .section-title h2 {
    font-size: 40px;
  }
  .page[data-page="home"] > .section .section-title {
    min-height: max(
      82px,
      calc(100dvh - 78px - 18px - clamp(330px, calc(100dvh - 285px), 480px) - 8px - 54px - 22px)
    );
    padding-top: 22px;
  }

  .page[data-page="home"] > .section .flavour-grid {
    width: min(1080px, 90%);
    gap: 16px;
  }
}
