/* =========================================================
   No Canto – Platzhalter-Seite
   Dark-elegant + warme portugiesische Akzente
   ========================================================= */

:root {
    /* Brand */
    --bg:            #0b0b0b;
    --bg-soft:       #111111;
    --bg-alt:        #161616;
    --cream:         #f5eedc;
    --cream-soft:    #fbf6ea;
    --cream-deep:    #e9dcc2;
    --terracotta:    #b8412a;
    --terracotta-h:  #d15a3e;
    --gold:          #c89f4e;
    --gold-soft:     #e6c780;
    --azulejo:       #2e5c8a;

    --text:          var(--cream);
    --text-muted:    rgba(245, 238, 220, 0.72);
    --text-dim:      rgba(245, 238, 220, 0.55);
    --text-dark:     #1a1a1a;
    --text-dark-muted: rgba(26, 26, 26, 0.72);

    --border-dark:   rgba(245, 238, 220, 0.10);
    --border-light:  rgba(26, 26, 26, 0.10);

    /* Typo */
    --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
    --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Layout */
    --container: 1200px;
    --radius:    14px;
    --radius-lg: 22px;

    /* Motion */
    --ease:     cubic-bezier(.2, .7, .2, 1);
    --t-fast:   180ms;
    --t-med:    420ms;
    --t-slow:   720ms;
}

/* Reset / base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
img, svg, iframe { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover, a:focus-visible { color: var(--gold-soft); }
button { font: inherit; cursor: pointer; }
em { font-style: italic; color: var(--gold); }
strong { font-weight: 600; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute;
    top: -40px; left: 12px;
    background: var(--gold);
    color: var(--bg);
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 1000;
    font-weight: 600;
    transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 12px; color: var(--bg); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: clamp(20px, 4vw, 48px);
}

.muted { color: var(--text-muted); }
.small { font-size: 0.875rem; }

/* Topbar ---------------------------------------------- */
.topbar {
    background: #050505;
    color: var(--text-dim);
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border-dark);
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding-block: 10px;
}
.topbar__phone {
    color: var(--gold-soft);
    font-weight: 500;
    letter-spacing: 0.01em;
}
.topbar__phone:hover { color: var(--cream); }

/* Nav ------------------------------------------------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 11, 11, 0.78);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--border-dark);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 14px;
    gap: 24px;
}
.nav__brand img {
    width: 140px;
    height: auto;
    display: block;
}
.nav__links {
    display: flex;
    gap: 28px;
    font-size: 0.95rem;
    font-weight: 500;
}
.nav__links a {
    color: var(--text-muted);
    padding-block: 6px;
    position: relative;
}
.nav__links a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--t-fast) var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

@media (max-width: 720px) {
    .nav__links { display: none; }
}

/* Buttons --------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform var(--t-fast) var(--ease),
                background var(--t-fast) var(--ease),
                color var(--t-fast) var(--ease),
                border-color var(--t-fast) var(--ease),
                box-shadow var(--t-fast) var(--ease);
    white-space: nowrap;
}
.btn--primary {
    background: var(--terracotta);
    color: var(--cream);
    box-shadow: 0 8px 24px -10px var(--terracotta);
}
.btn--primary:hover {
    background: var(--terracotta-h);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px var(--terracotta);
}
.btn--ghost {
    background: transparent;
    color: var(--cream);
    border-color: rgba(245, 238, 220, 0.25);
}
.btn--ghost:hover {
    background: rgba(245, 238, 220, 0.08);
    border-color: rgba(245, 238, 220, 0.5);
    color: var(--cream);
    transform: translateY(-2px);
}

/* Hero ------------------------------------------------ */
.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(60px, 10vw, 120px) 0 clamp(60px, 10vw, 120px);
    background: radial-gradient(ellipse at top, #181818 0%, var(--bg) 60%);
    text-align: center;
    min-height: 88vh;
    display: flex;
    align-items: center;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    will-change: transform;
}
.hero__glow--red {
    width: 520px; height: 520px;
    background: radial-gradient(circle, var(--terracotta) 0%, transparent 70%);
    top: -120px; left: -120px;
}
.hero__glow--gold {
    width: 420px; height: 420px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    bottom: -100px; right: -80px;
    opacity: 0.22;
}
.hero__pattern {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(transparent 95%, rgba(245, 238, 220, 0.03) 95%),
        linear-gradient(90deg, transparent 95%, rgba(245, 238, 220, 0.03) 95%);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    opacity: 0.6;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin-inline: auto;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(245, 238, 220, 0.06);
    border: 1px solid var(--border-dark);
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.hero__eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--terracotta-h);
    box-shadow: 0 0 0 0 rgba(209, 90, 62, 0.6);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(209, 90, 62, 0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(209, 90, 62, 0); }
    100% { box-shadow: 0 0 0 0 rgba(209, 90, 62, 0); }
}

.hero__logo {
    width: clamp(260px, 40vw, 460px);
    height: auto;
    margin: 0 auto 40px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

.hero__title {
    font-size: clamp(2rem, 5.2vw, 3.8rem);
    color: var(--cream);
    margin-bottom: 20px;
    font-weight: 500;
}
.hero__subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 36px;
}
.hero__cta {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
}
.hero__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.88rem;
}
.stars { color: var(--gold); letter-spacing: 2px; }
.stars__half { opacity: 0.55; }

.hero__scroll {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 1.5px solid rgba(245, 238, 220, 0.35);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
    transition: border-color var(--t-fast) var(--ease);
}
.hero__scroll span {
    display: block;
    width: 3px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: drop 1.6s infinite var(--ease);
}
.hero__scroll:hover { border-color: var(--gold); }
@keyframes drop {
    0%   { transform: translateY(0); opacity: 0.9; }
    70%  { transform: translateY(12px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* Sections -------------------------------------------- */
.section {
    padding: clamp(64px, 9vw, 110px) 0;
    position: relative;
}
.section--cream {
    background: var(--cream);
    color: var(--text-dark);
}
.section--dark {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}
.section--accent {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(200, 159, 78, 0.18) 0%, transparent 60%),
        linear-gradient(135deg, #3a1610 0%, #0b0b0b 60%);
    color: var(--cream);
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-soft); }

.section__title {
    font-size: clamp(1.8rem, 4.2vw, 2.9rem);
    max-width: 720px;
    color: var(--text-dark);
}
.section__title--light { color: var(--cream); }
.section__head {
    text-align: center;
    margin: 0 auto clamp(40px, 6vw, 72px);
    max-width: 760px;
}
.section__head .section__title { margin-inline: auto; }
.section__sub {
    color: var(--text-dark-muted);
    font-size: 1.05rem;
    margin-top: 12px;
}
.section__sub--light { color: var(--text-muted); }

/* Split section (Über uns) */
.section__inner--split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: start;
}
@media (max-width: 820px) {
    .section__inner--split { grid-template-columns: 1fr; }
}
.section__lead .section__title { max-width: none; }
.section__body .lead {
    font-size: 1.15rem;
    color: var(--text-dark);
}
.section__body p { max-width: 62ch; }

/* Product cards --------------------------------------- */
.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.card {
    background: linear-gradient(180deg, rgba(245, 238, 220, 0.04) 0%, rgba(245, 238, 220, 0) 100%);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    position: relative;
    transition: transform var(--t-fast) var(--ease),
                border-color var(--t-fast) var(--ease),
                background var(--t-fast) var(--ease);
    overflow: hidden;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 159, 78, 0.4);
    background: linear-gradient(180deg, rgba(200, 159, 78, 0.07) 0%, rgba(245, 238, 220, 0) 100%);
}
.card__icon {
    width: 48px; height: 48px;
    color: var(--gold-soft);
    margin-bottom: 18px;
}
.card h3 {
    font-size: 1.35rem;
    color: var(--cream);
    margin-bottom: 10px;
}
.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
}
.card__tag {
    display: inline-block;
    background: rgba(200, 159, 78, 0.12);
    color: var(--gold-soft);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(200, 159, 78, 0.3);
}

/* Visit section --------------------------------------- */
.visit {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: stretch;
}
@media (max-width: 860px) {
    .visit { grid-template-columns: 1fr; }
}

.visit__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.info-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: start;
}
.info-row__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--bg);
    color: var(--cream);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.info-row h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.01em;
}
.info-row p { margin: 0 0 6px; color: var(--text-dark); }
.info-row .muted { color: var(--text-dark-muted); }
.info-row .phone { color: var(--terracotta); font-weight: 600; font-size: 1.2rem; }
.info-row .phone:hover { color: var(--terracotta-h); }

.linky {
    display: inline-block;
    margin-top: 6px;
    color: var(--terracotta);
    font-weight: 500;
    border-bottom: 1px dashed var(--terracotta);
    padding-bottom: 2px;
}
.linky:hover { color: var(--terracotta-h); border-color: var(--terracotta-h); }

.hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 4px 0 10px;
    max-width: 320px;
}
.hours li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px dotted rgba(26, 26, 26, 0.15);
    padding: 6px 0;
    font-size: 0.98rem;
}

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.25);
    min-height: 380px;
    background: #ddd;
}
.visit__map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    filter: grayscale(15%) contrast(0.98);
}

/* News / CTA ------------------------------------------ */
.news {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}
@media (max-width: 860px) {
    .news { grid-template-columns: 1fr; text-align: center; }
    .news__left .eyebrow { margin-inline: auto; }
}

.news__form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(245, 238, 220, 0.12);
    backdrop-filter: blur(6px);
}
@media (max-width: 500px) {
    .news__form { grid-template-columns: 1fr; }
}
.news__form input {
    border: 0;
    background: rgba(245, 238, 220, 0.08);
    color: var(--cream);
    padding: 14px 18px;
    border-radius: 999px;
    font-size: 1rem;
    outline: none;
    transition: background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.news__form input::placeholder { color: rgba(245, 238, 220, 0.45); }
.news__form input:focus {
    background: rgba(245, 238, 220, 0.14);
    box-shadow: 0 0 0 2px var(--gold);
}
.news__hint {
    grid-column: 1 / -1;
    font-size: 0.82rem;
    color: var(--text-dim);
    margin: 0;
    text-align: center;
}
.news__hint a { color: var(--gold-soft); border-bottom: 1px dashed rgba(230, 199, 128, 0.45); }
.news__hint a:hover { color: var(--cream); }

.news__consent {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}
.news__consent input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.news__consent a {
    color: var(--gold-soft);
    border-bottom: 1px dashed rgba(230, 199, 128, 0.45);
}
.news__consent a:hover { color: var(--cream); }

.news__error {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(184, 65, 42, 0.18);
    border: 1px solid rgba(184, 65, 42, 0.45);
    color: var(--cream);
    font-size: 0.9rem;
    text-align: center;
}

/* Honeypot: invisible to humans, attractive to bots */
.hp {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Footer ---------------------------------------------- */
.footer {
    background: #050505;
    color: var(--text-muted);
    padding-top: 72px;
    font-size: 0.95rem;
    border-top: 1px solid var(--border-dark);
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
}
@media (max-width: 820px) {
    .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .footer__inner { grid-template-columns: 1fr; }
}
.footer__brand img { width: 140px; margin-bottom: 14px; }
.footer__slogan {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold-soft);
    margin: 0;
}
.footer__col h4 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--cream);
    margin-bottom: 14px;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col a { color: var(--text-muted); }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
    border-top: 1px solid var(--border-dark);
    padding-block: 22px;
    font-size: 0.82rem;
}
.footer__bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-dim);
}
.footer__bottom p { margin: 0; }

/* Reveal animations ----------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Selection */
::selection { background: var(--gold); color: var(--bg); }

/* Helpers for small screens --------------------------- */
@media (max-width: 520px) {
    .topbar__text { display: none; }
    .topbar__inner { justify-content: center; }
    .hero__meta { flex-direction: column; gap: 4px; }
}
