/* =========================================================
   Happy Saloon — Alpenboutique Editorial
   Cream · Forest · Terracotta · Fraunces × Instrument Sans
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,300..900,30;0,9..144,300..900,100;1,9..144,300..900,30;1,9..144,300..900,100&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

/* -----  Design tokens  ----- */
:root {
    --cream:        #F4ECDD;
    --cream-2:      #EFE5D2;
    --bone:         #E6DAC2;
    --paper:        #FAF5EB;
    --forest:       #243024;
    --forest-2:     #2E3B2D;
    --moss:         #5A6B49;
    --sage:         #8E9A78;
    --rust:         #B85431;
    --rust-deep:    #963F22;
    --ink:          #161510;
    --line:         rgba(36, 48, 36, 0.16);
    --line-soft:    rgba(36, 48, 36, 0.08);

    --display: "Fraunces", "Times New Roman", serif;
    --body:    "Instrument Sans", system-ui, sans-serif;

    --container: 1240px;
    --gutter: clamp(22px, 5.5vw, 56px);

    --ease: cubic-bezier(.2, .7, .15, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--body);
    font-weight: 400;
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.55;
    color: var(--forest);
    background: var(--cream);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip; /* clip (not hidden) avoids making body a scroll container, which otherwise breaks the sticky topbar on iOS Safari */
    position: relative;
}

/* film grain */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: .35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.14 0 0 0 0 0.19 0 0 0 0 0.14 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--rust); color: var(--cream); }

/* -----  Typography  ----- */
h1, h2, h3, h4, h5 {
    font-family: var(--display);
    font-weight: 380;
    letter-spacing: -0.02em;
    line-height: 1.04;
    color: var(--forest);
    margin: 0 0 .4em;
    font-variation-settings: "SOFT" 50, "opsz" 144;
}

.display {
    font-family: var(--display);
    font-weight: 320;
    font-variation-settings: "SOFT" 100, "opsz" 144;
    letter-spacing: -0.035em;
    line-height: 0.92;
}

.italic { font-style: italic; }

p { margin: 0 0 1.1em; max-width: 62ch; }

.eyebrow {
    font-family: var(--body);
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--rust);
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
/* .eyebrow::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--rust);
} */

.num {
    font-family: var(--display);
    font-style: italic;
    font-variation-settings: "SOFT" 100;
    color: var(--rust);
    font-size: 1em;
}

/* -----  Layout  ----- */
.wrap {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.divider {
    height: 1px;
    background: var(--line);
    border: 0;
    margin: 0;
}

/* -----  Top bar  ----- */
.topbar {
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    background: color-mix(in srgb, var(--cream) 88%, transparent);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 10px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--display);
    font-weight: 380;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--forest);
}
.brand__mark {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--forest);
    color: var(--cream);
    border-radius: 50%;
    transition: transform .5s var(--ease), background .3s;
}
.brand:hover .brand__mark { transform: rotate(-12deg); background: var(--rust); }
.brand__mark svg { width: 22px; height: 22px; }

.brand__name { line-height: 1; }
.brand__name small {
    display: block;
    font-family: var(--body);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--moss);
    margin-top: 4px;
    font-weight: 500;
}

/* -----  Primary nav  ----- */
.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav__link {
    position: relative;
    display: inline-block;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--forest);
    transition: color .25s;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 1px;
    background: var(--rust);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.nav__link:hover { color: var(--rust); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--rust); }

.has-sub { position: relative; }
.subnav {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 260px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 14px;
    list-style: none;
    margin: 0;
    box-shadow: 0 24px 60px -28px rgba(36,48,36,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .25s, transform .25s, visibility 0s .25s;
    z-index: 60;
}
.has-sub:hover .subnav,
.has-sub:focus-within .subnav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .25s, transform .25s, visibility 0s;
}
.subnav a {
    display: block;
    padding: 8px 10px;
    font-size: 13.5px;
    color: var(--forest);
    border-radius: 3px;
    transition: background .2s, color .2s, padding .25s;
}
.subnav a:hover { background: var(--cream-2); color: var(--rust); padding-left: 16px; }

/* lang & burger */
.lang {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 8px;
    border-left: 1px solid var(--line);
    padding-left: 16px;
}
.lang a {
    padding: 6px 10px;
    color: var(--moss);
    transition: color .2s;
}
.lang a.is-active { color: var(--forest); }
.lang a:hover { color: var(--rust); }

.burger {
    display: none;
    width: 42px; height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 999px;
    position: relative;
}
.burger span {
    position: absolute;
    left: 12px; right: 12px;
    height: 1.5px;
    background: var(--forest);
    transition: transform .3s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 16px; }
.burger.is-open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

@media (max-width: 1024px) {
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
        max-height: calc(100vh - 74px); overflow-y: auto;
        background: var(--paper); border-bottom: 1px solid var(--line);
        flex-direction: column; align-items: stretch; padding: 16px var(--gutter) 28px; gap: 0; }
    .nav.is-open { display: flex; }
    body.nav-open { overflow: hidden; }
    .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
    .nav__link::after { display: none; }
    .has-sub .subnav { position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: 0; padding: 0 0 6px 14px; background: transparent; }
    .lang { border-left: 0; padding-left: 0; margin-left: 0; margin-top: 14px; }
    .burger { display: inline-block; }
}

/* =========================================================
   ONE-PAGER  ·  Hero + Sections
   ========================================================= */

/* Scroll-Offset für Anker-Sprünge (sticky topbar) */
:target,
section[id] { scroll-margin-top: 90px; }

body.is-portal {
    background:
      radial-gradient(60% 50% at 80% 0%, rgba(184,84,49,0.08), transparent 60%),
      radial-gradient(50% 50% at 0% 35%, rgba(90,107,73,0.12), transparent 65%),
      var(--cream);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: clamp(40px, 6vw, 90px) 0 clamp(60px, 8vw, 120px);
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero__title {
    font-family: var(--display);
    font-weight: 280;
    font-variation-settings: "SOFT" 100, "opsz" 144;
    font-size: clamp(56px, 10vw, 152px);
    letter-spacing: -0.045em;
    line-height: 0.88;
    color: var(--forest);
    margin: 0 0 24px;
}
.hero__title em {
    font-style: italic;
    color: var(--rust);
    font-weight: 320;
    display: block;
    margin-left: 0.15em;
}
.hero__lede {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(18px, 1.5vw, 22px);
    color: var(--moss);
    max-width: 36ch;
    margin-bottom: 36px;
    font-weight: 350;
}
.hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero__visual-wrap { position: relative; }
.hero__visual {
    position: relative;
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
    margin: 0;
    border-radius: 50% 50% 50% 50% / 52% 48% 52% 48%;
    background: var(--bone);
    box-shadow:
      inset 0 0 0 1px rgba(36,48,36,.10),
      0 60px 100px -50px rgba(36,48,36,.4);
    animation: blob 22s ease-in-out infinite;
}
.hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__visual figcaption {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--forest);
    color: var(--cream);
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    white-space: nowrap;
}
@keyframes blob {
    0%, 100% { border-radius: 50% 50% 50% 50% / 52% 48% 52% 48%; }
    33%      { border-radius: 56% 44% 60% 40% / 48% 56% 44% 52%; }
    66%      { border-radius: 44% 56% 48% 52% / 56% 44% 60% 40%; }
}

@media (max-width: 860px) {
    .hero__inner { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Generic section ---------- */
.section {
    padding: clamp(70px, 9vw, 130px) 0;
    border-top: 1px solid var(--line);
}
.section__head {
    max-width: 720px;
    margin: 0 auto clamp(40px, 5vw, 70px);
    text-align: center;
}
.section__title {
    font-family: var(--display);
    font-weight: 320;
    font-variation-settings: "SOFT" 100, "opsz" 144;
    font-size: clamp(40px, 5.5vw, 78px);
    letter-spacing: -0.035em;
    line-height: 0.96;
    margin: 14px 0 18px;
}
.section__title em { font-style: italic; color: var(--rust); font-weight: 340; }
.section__lede {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(18px, 1.6vw, 22px);
    color: var(--moss);
    max-width: 48ch;
    margin: 0 auto;
    line-height: 1.4;
}
.section__head .eyebrow { justify-content: center; }
.section__outro {
    text-align: center;
    margin-top: 40px;
    color: var(--moss);
    font-style: italic;
}

.section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}
.section__body p.lead {
    font-family: var(--display);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 350;
    line-height: 1.35;
    color: var(--forest);
    margin-bottom: 1.1em;
    font-variation-settings: "SOFT" 80;
}
.section__body p { font-size: 17px; line-height: 1.7; max-width: 60ch; }
.section__media {
    margin: 0;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bone);
    box-shadow: 0 40px 70px -40px rgba(36,48,36,.35);
}
.section__media img { width: 100%; height: 100%; object-fit: cover; }
.section--about .section__grid { grid-template-columns: 1fr 1.2fr; }

@media (max-width: 860px) {
    .section__grid { grid-template-columns: 1fr; }
    .section--about .section__grid { grid-template-columns: 1fr; }
}

/* ---------- Team grid ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 2.5vw, 40px);
}
.team-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -30px rgba(36,48,36,.25);
}
.team-card__photo {
    margin: 0;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bone);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 24px 24px 28px; }
.team-card__role {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 500;
}
.team-card__name {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 360;
    margin: 6px 0 12px;
}
.team-card p { font-size: 14.5px; color: var(--moss); margin: 0; line-height: 1.55; }

/* ---------- Leistungen (services) override on home ---------- */
.section--leistungen .services {
    margin-top: 0;
    border-top: 1px solid var(--line);
}
.section--leistungen .service {
    cursor: default;
}
.section--leistungen .service h3 { margin-bottom: 12px; }
.section--leistungen .service p { color: var(--moss); }

/* ---------- Kontakt card ---------- */
.contact-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 32px;
}
.contact-card h4 {
    font-family: var(--body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rust);
    margin: 0 0 14px;
}
.contact-card__name {
    font-family: var(--display);
    font-size: 24px;
    color: var(--forest);
    margin-bottom: 14px;
}
.contact-card p { font-size: 14px; margin: 0 0 .5em; line-height: 1.55; }
.contact-card hr { border: 0; height: 1px; background: var(--line); margin: 22px 0; }
.contact-card__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--line-soft);
    font-size: 13.5px;
}
.contact-card__row:first-of-type { border-top: 0; }
.contact-card__row span:first-child {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--moss);
    font-weight: 600;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px 18px 32px;
    background: var(--forest);
    color: var(--cream);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background .3s var(--ease), gap .3s var(--ease), transform .3s;
    border: 0;
}
.cta:hover { background: var(--rust); gap: 22px; }
.cta:active { transform: scale(.98); }
.cta__arrow {
    width: 14px; height: 14px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .3s;
}
.cta:hover .cta__arrow { transform: translateX(4px) rotate(45deg); }

.cta.is-ghost {
    background: transparent;
    color: var(--forest);
    border: 1px solid var(--forest);
}
.cta.is-ghost:hover { background: var(--forest); color: var(--cream); }

@media (max-width: 600px) {
    .brand { font-size: 19px; gap: 10px; }
}

/* =========================================================
   INNER PAGES — Page header + content
   ========================================================= */
.page-head {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--line);
    position: relative;
}
.page-head__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
}
.page-head h1 {
    font-size: clamp(48px, 7vw, 104px);
    font-weight: 300;
    margin: 18px 0 0;
    font-variation-settings: "SOFT" 100, "opsz" 144;
    letter-spacing: -0.04em;
}
.page-head h1 em { font-style: italic; color: var(--rust); font-weight: 340; }

.breadcrumb {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--moss);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.breadcrumb li::after { content: "·"; margin-left: 10px; color: var(--rust); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--moss); transition: color .2s; }
.breadcrumb a:hover { color: var(--rust); }

.page-head__deck {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(18px, 1.6vw, 24px);
    color: var(--moss);
    max-width: 32ch;
    text-align: right;
    line-height: 1.3;
}

/* Two-column page body */
.page-body {
    padding: 70px 20px 100px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 80px;
    align-items: start;
}
.prose {
    max-width: 70ch;
}
.prose h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    margin-top: 1.5em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    font-family: var(--body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
    margin: 2.4em 0 .8em;
}
.prose p { font-size: 17px; line-height: 1.7; }
.prose p.lead {
    font-family: var(--display);
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 350;
    line-height: 1.35;
    color: var(--forest);
    margin-bottom: 1.4em;
    font-variation-settings: "SOFT" 80;
}
.prose p.lead::first-letter {
    font-family: var(--display);
    font-weight: 350;
    float: left;
    font-size: 4.6em;
    line-height: .85;
    margin: .04em .12em -.05em 0;
    color: var(--rust);
    font-variation-settings: "SOFT" 100;
}
/* portrait image on qualifikationen */
.prose__portrait {
    margin: 0 0 2.4em;
    border-radius: 4px;
    overflow: hidden;
    max-width: 480px;
}
.prose__portrait img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.prose ul { padding: 0; list-style: none; margin: 1.6em 0; }
.prose ul li {
    position: relative;
    padding: 12px 0 12px 36px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16px;
}
.prose ul li::before {
    content: "";
    position: absolute;
    left: 4px; top: 50%;
    width: 18px; height: 1px;
    background: var(--rust);
}

.sidecard {
    position: sticky;
    top: 100px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 28px;
}
.sidecard h4 {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: var(--body);
    font-weight: 600;
    color: var(--rust);
    margin: 0 0 14px;
}
.sidecard p { font-size: 14px; margin: 0 0 .6em; line-height: 1.55; }
.sidecard .sidecard__name {
    font-family: var(--display);
    font-size: 22px;
    color: var(--forest);
    margin-bottom: 12px;
    line-height: 1.1;
}
.sidecard .row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-top: 1px solid var(--line-soft);
    font-size: 13.5px;
}
.sidecard .row:first-of-type { border-top: 0; }
.sidecard .row span:last-child { color: var(--moss); }
.sidecard hr { border: 0; height: 1px; background: var(--line); margin: 18px 0; }
a.mail,
.prose a:not(.cta) {
    color: var(--rust);
    border-bottom: 1px solid currentColor;
    transition: opacity .2s;
}
a.mail:hover,
.prose a:not(.cta):hover { opacity: .72; }

@media (max-width: 960px) {
    .page-body { grid-template-columns: 1fr; gap: 50px; }
    .page-head__inner { grid-template-columns: 1fr; }
    .page-head__deck { text-align: left; max-width: none; }
    .sidecard { position: static; }
}

/* =========================================================
   Service cards / Angebot
   ========================================================= */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    margin-top: 50px;
}
.service {
    padding: 36px 30px 40px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    position: relative;
    transition: background .35s var(--ease);
}
.service:nth-child(3n) { border-right: 0; }
.service:hover { background: var(--paper); }
.service__num {
    font-family: var(--display);
    font-style: italic;
    color: var(--rust);
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    display: block;
}
.service h3 {
    font-size: 28px;
    font-weight: 360;
    margin: 0 0 10px;
}
.service p { font-size: 14.5px; color: var(--moss); margin: 0 0 22px; }
.service a {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--forest);
    padding-bottom: 3px;
    transition: color .2s, gap .3s var(--ease);
}
.service a:hover { color: var(--rust); border-color: var(--rust); gap: 14px; }

/* feature row image + text */
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 90px 0;
    border-top: 1px solid var(--line);
}
.feature.is-reverse { direction: rtl; }
.feature.is-reverse > * { direction: ltr; }
.feature__img {
    aspect-ratio: 4/5;
    background: var(--bone);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.feature__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 30%, rgba(244,236,221,.6), transparent 60%),
      linear-gradient(150deg, var(--cream-2), var(--sage));
    mix-blend-mode: normal;
}
.feature__img svg {
    position: relative; z-index: 1;
    width: 50%; height: auto;
    margin: 30% auto 0;
    display: block;
    opacity: .85;
}
.feature__copy h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 320;
    margin-bottom: .4em;
}
.feature__copy h2 em { font-style: italic; color: var(--rust); }
@media (max-width: 800px) {
    .feature { grid-template-columns: 1fr; gap: 30px; padding: 50px 0; }
    .feature.is-reverse { direction: ltr; }
}

/* gallery grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 30px;
}
.gallery__item {
    background: var(--bone);
    border-radius: 4px;
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    transition: transform .5s var(--ease);
}
.gallery__item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(230,218,194,.25), rgba(142,154,120,.35));
    z-index: 1;
}
.gallery__item:hover { transform: translateY(-6px); }
.gallery__item:nth-child(1) { grid-column: span 7; aspect-ratio: 16/10; }
.gallery__item:nth-child(2) { grid-column: span 5; }
.gallery__item:nth-child(3) { grid-column: span 4; }
.gallery__item:nth-child(4) { grid-column: span 4; }
.gallery__item:nth-child(5) { grid-column: span 4; }
.gallery__item:nth-child(6) { grid-column: span 6; aspect-ratio: 16/10; }
.gallery__item:nth-child(7) { grid-column: span 6; aspect-ratio: 16/10; }
@media (max-width: 700px) {
    .gallery__item { grid-column: span 12 !important; aspect-ratio: 4/3; }
}

/* hours & products tables */
.hours, .brands {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
    margin: 20px 0 30px;
}
.hours .row, .brands .row {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
    gap: 20px;
}
.hours .day, .brands .name {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 350;
}
.hours .note, .brands .note { color: var(--moss); font-size: 14px; }
.hours .time { color: var(--rust); font-size: 14px; font-weight: 500; letter-spacing: 0.05em; }

/* contact form */
.form {
    display: grid;
    gap: 18px;
    max-width: 560px;
    margin-top: 30px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.field label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--moss);
    font-weight: 600;
}
.field input, .field textarea, .field select {
    font: inherit;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    color: var(--forest);
    transition: border-color .25s;
}
.field input:focus, .field textarea:focus {
    outline: 0;
    border-color: var(--rust);
}
.field textarea { resize: vertical; min-height: 110px; }
.form button { justify-self: start; margin-top: 10px; }

/* map */
.map {
    width: 100%;
    height: 460px;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 30px;
    background: var(--bone);
}
.map iframe { width: 100%; height: 100%; border: 0; }

/* sitemap columns */
.sitemap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 30px;
}
.sitemap section h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 360;
    margin: 0 0 12px;
}
.sitemap ul { list-style: none; padding: 0; margin: 0; }
.sitemap li { padding: 6px 0; border-bottom: 1px solid var(--line-soft); }
.sitemap a { color: var(--forest); transition: color .2s, padding .25s; }
.sitemap a:hover { color: var(--rust); padding-left: 8px; }

/* =========================================================
   Footer
   ========================================================= */
.foot {
    background: var(--forest);
    color: var(--cream);
    padding: 80px 0 32px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}
/* .foot::before {
    content: "";
    position: absolute;
    top: -120px; right: -100px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,84,49,.35), transparent 70%);
} */
.foot__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    position: relative;
}
.foot h4 {
    font-family: var(--body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sage);
    margin: 0 0 18px;
}
.foot__big {
    font-family: var(--display);
    font-style: italic;
    font-weight: 350;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.05;
    margin: 0 0 18px;
    color: var(--cream);
    font-variation-settings: "SOFT" 100;
    max-width: 14ch;
}
.foot p { margin: 0 0 8px; font-size: 14px; color: color-mix(in srgb, var(--cream) 80%, transparent); }
.foot a { color: var(--cream); transition: color .2s; }
.foot a:hover { color: var(--rust); }
.foot ul { list-style: none; margin: 0; padding: 0; font-size: 14px; }
.foot ul li { padding: 4px 0; }
.foot__bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(244,236,221,.18);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: color-mix(in srgb, var(--cream) 60%, transparent);
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 800px) {
    .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .foot__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* small */
.muted { color: var(--moss); }
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-l { margin-top: 60px; }
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
