/*
Theme Name: Hochzeitsfotograf Schweiz
Theme URI: https://www.hochzeitsfotograf-schweiz.com
Author: NEUFLUSS Studio
Author URI: https://neufluss.de
Description: Premium Wedding Photography Theme für Hochzeitsfotografen in der Schweiz. Elegant, modern, SEO-optimiert mit Blog-Integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hf-schweiz
Tags: photography, wedding, portfolio, blog, one-page, custom-colors, custom-menu

*/

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --black:      #08080a;
  --off-white:  #f2ede6;
  --cream:      #faf6f0;
  --gold:       #b8965c;
  --gold-light: #d4af7a;
  --forest:     #111a17;
  --muted:      #7a7068;
  --border:     rgba(184,150,92,.2);
}

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* Grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9990;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .035;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === CUSTOM CURSOR === */
#cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
}
#cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 1px solid rgba(184,150,92,.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
}

/* === NAVIGATION === */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem 3.5rem;
  mix-blend-mode: difference;
  transition: padding .4s, background .4s, mix-blend-mode .4s;
}
#site-header.scrolled {
  padding: 1rem 3.5rem;
  background: rgba(8,8,10,.92);
  backdrop-filter: blur(12px);
  mix-blend-mode: normal;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: .8rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--cream);
}
.site-logo img { height: 40px; width: auto; }

#primary-menu {
  display: flex; gap: 2.5rem; list-style: none;
}
#primary-menu a {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream); position: relative;
}
#primary-menu a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold-light);
  transition: width .3s;
}
#primary-menu a:hover::after { width: 100%; }

/* Mobile menu toggle */
.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: .5rem;
  color: var(--cream);
}
.menu-toggle span {
  display: block; width: 24px; height: 1px;
  background: currentColor; margin: 6px 0;
  transition: transform .3s, opacity .3s;
}

/* === HERO === */
#hero {
  min-height: 100svh;
  background: var(--black);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 10rem 3rem 5rem 3.5rem;
  position: relative; z-index: 2;
}
.hero-tag {
  font-size: .65rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .8rem;
}
.hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: .92; font-weight: 900;
  color: var(--off-white); letter-spacing: -.02em;
}
.hero-title .outline {
  -webkit-text-stroke: 1px var(--off-white); color: transparent;
}
.hero-title .gold-italic {
  font-style: italic; font-weight: 400; color: var(--gold-light);
  font-size: .75em; display: block; margin-top: .1em;
}
.hero-sub-row {
  display: flex; align-items: center; gap: 2rem; margin-top: 3rem;
}
.hero-desc {
  font-size: .82rem; color: rgba(242,237,230,.45);
  line-height: 1.8; max-width: 260px;
  border-left: 1px solid var(--border); padding-left: 1.2rem;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: .85rem 2rem; background: var(--gold); color: var(--black);
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; position: relative; overflow: hidden;
  transition: color .3s; flex-shrink: 0;
}
.hero-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--off-white);
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
}
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta span { position: relative; z-index: 1; }
.hero-right { position: relative; overflow: hidden; }
.hero-img-wrap {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.1) 40%, rgba(0,0,0,.5) 100%),
    radial-gradient(ellipse 120% 100% at 60% 30%, #c9a96e 0%, #8b6340 25%, #3d2510 55%, #1a0f07 100%);
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.75) contrast(1.05);
  position: relative; z-index: 0;
}
.hero-img-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(8,8,10,.3) 0%, transparent 40%),
              linear-gradient(to top, rgba(8,8,10,.4) 0%, transparent 50%);
}
.hero-vertical {
  position: absolute; right: 3.5rem; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: .58rem; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(242,237,230,.2); z-index: 3; white-space: nowrap;
}
.hero-scroll-ind {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 10;
}
.hero-scroll-ind span {
  font-size: .55rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(242,237,230,.3);
}
.scroll-orb {
  width: 24px; height: 38px;
  border: 1px solid rgba(184,150,92,.3); border-radius: 12px;
  position: relative;
}
.scroll-orb::after {
  content: ''; position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: scrollBob 1.6s ease infinite;
}
@keyframes scrollBob {
  0% { top: 5px; opacity: 1; }
  80% { top: 20px; opacity: 0; }
  100% { top: 5px; opacity: 0; }
}

/* === MARQUEE === */
.marquee-strip {
  background: var(--gold); padding: .75rem 0;
  overflow: hidden; position: relative; z-index: 2;
}
.marquee-inner {
  display: flex; width: max-content;
  animation: marquee 18s linear infinite;
}
.marquee-inner span {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: .85rem; color: var(--black); padding: 0 2.5rem; white-space: nowrap;
}
.marquee-inner .dot { font-style: normal; font-size: .5rem; opacity: .5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === SECTIONS BASE === */
.section-eyebrow {
  font-size: .6rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: .8rem;
}
.section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-big-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 1.0; font-weight: 900; color: var(--black);
}
.section-big-title .outline-text {
  -webkit-text-stroke: 1.5px var(--black); color: transparent;
}
.section-big-title em { font-style: italic; color: var(--gold); }
.section-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end; margin-bottom: 5rem;
}
.section-right-note {
  font-size: .88rem; color: var(--muted); line-height: 1.8;
  padding-left: 2rem; border-left: 1px solid rgba(0,0,0,.12);
}

/* === ABOUT === */
#about {
  display: grid; grid-template-columns: 5fr 7fr; min-height: 100vh;
}
.about-left {
  background: var(--forest); padding: 7rem 3.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.about-big-nr {
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem,16vw,18rem); font-weight: 900;
  color: rgba(255,255,255,.04); line-height: 1;
  position: absolute; bottom: -2rem; left: -1rem; pointer-events: none;
}
.about-label {
  font-size: .6rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: .8rem;
}
.about-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.portrait-frame {
  width: 100%; aspect-ratio: 3/4;
  border: 1px solid rgba(184,150,92,.2);
  position: relative; overflow: hidden;
  margin-top: 3rem;
  background: linear-gradient(145deg,#1e2820 0%,#111a14 100%);
}
.portrait-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.85) contrast(1.05);
  transition: transform .6s ease;
}
.portrait-frame:hover img { transform: scale(1.04); }
.portrait-tag {
  position: absolute; bottom: -1px; right: -1px;
  background: var(--gold); padding: .5rem 1rem;
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--black); font-weight: 500;
}
.about-right {
  padding: 7rem 4.5rem 7rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  line-height: 1.05; font-weight: 700; color: var(--black);
  margin-bottom: 2.5rem;
}
.about-headline em { font-style: italic; color: var(--gold); }
.about-body { font-size: .92rem; color: var(--muted); line-height: 1.95; max-width: 480px; }
.about-body p + p { margin-top: 1.2rem; }
.about-sig {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 2.2rem; color: var(--gold); margin-top: 2.5rem;
}
.about-badges {
  display: flex; gap: 2rem; margin-top: 3rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(0,0,0,.08);
}
.badge-num {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 2.5rem; color: var(--black); line-height: 1;
}
.badge-num sup { font-size: 1rem; vertical-align: super; }
.badge-label {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-top: .3rem;
}

/* === STATS === */
#stats { background: var(--black); display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell {
  padding: 4rem 3rem; border-right: 1px solid rgba(255,255,255,.05);
  position: relative; overflow: hidden;
}
.stat-cell:last-child { border-right: none; }
.stat-cell::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s cubic-bezier(.77,0,.18,1);
}
.stat-cell:hover::before { transform: scaleX(1); }
.stat-n {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(3rem,5vw,5.5rem); line-height: 1; color: var(--off-white);
}
.stat-n .unit { font-size: .5em; vertical-align: super; color: var(--gold); }
.stat-l {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-top: .8rem;
}

/* === SERVICES === */
#leistungen { background: var(--cream); padding: 8rem 3.5rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(0,0,0,.08);
}
.svc-card {
  background: var(--cream); padding: 3rem 2.8rem;
  position: relative; overflow: hidden; transition: background .4s;
}
.svc-card:hover { background: #f0e8dc; }
.svc-card::after {
  content: ''; position: absolute; left: 0; top: 0;
  width: 0; height: 3px; background: var(--gold);
  transition: width .5s cubic-bezier(.77,0,.18,1);
}
.svc-card:hover::after { width: 100%; }
.svc-nr {
  font-family: 'Playfair Display', serif; font-size: 5rem;
  font-weight: 900; line-height: 1; color: rgba(0,0,0,.05);
  margin-bottom: .5rem; transition: color .3s;
}
.svc-card:hover .svc-nr { color: rgba(184,150,92,.15); }
.svc-name {
  font-family: 'Playfair Display', serif; font-size: 1.6rem;
  font-weight: 700; color: var(--black); margin-bottom: 1rem;
}
.svc-desc { font-size: .85rem; color: var(--muted); line-height: 1.85; }
.svc-price {
  display: inline-block; margin-top: 2rem;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.3rem; color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
}

/* === PORTFOLIO === */
#portfolio { background: var(--black); padding: 8rem 3.5rem; }
.port-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem;
}
.port-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 1; font-weight: 900; color: var(--off-white);
}
.port-title .outline-light {
  -webkit-text-stroke: 1.5px rgba(242,237,230,.3); color: transparent; display: block;
}
.port-desc {
  font-size: .82rem; color: rgba(242,237,230,.35); line-height: 1.85;
  max-width: 300px; border-left: 1px solid var(--border); padding-left: 1.5rem;
}
.port-grid {
  display: grid; grid-template-columns: repeat(12,1fr);
  grid-template-rows: 300px 280px; gap: 4px;
}
.p-item { position: relative; overflow: hidden; background: #14110c; }
.p-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.p-item:nth-child(2) { grid-column: span 4; }
.p-item:nth-child(3) { grid-column: span 3; }
.p-item:nth-child(4) { grid-column: span 3; }
.p-item:nth-child(5) { grid-column: span 4; }

/* ── MASONRY PORTFOLIO GRID ── */
.port-grid-large {
  columns: 4;
  column-gap: 6px;
}
.p-item-lg {
  position: relative; overflow: hidden;
  background: #14110c;
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 6px;
  display: block;
}
/* Alle Bilder im Hochformat */
.p-item-lg { aspect-ratio: 2/3; }

/* Zoom icon */
.p-zoom-icon {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px;
  background: rgba(184,150,92,.0); border: 1px solid rgba(184,150,92,.0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.2rem;
  opacity: 0; transition: opacity .3s, background .3s, border-color .3s;
  z-index: 3;
}
.p-item-lg:hover .p-zoom-icon {
  opacity: 1;
  background: rgba(184,150,92,.15);
  border-color: rgba(184,150,92,.4);
}

/* ── LIGHTBOX ── */
#hfs-lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(5,5,8,.96);
  display: flex !important;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
#hfs-lightbox.lb-visible {
  opacity: 1; pointer-events: all;
}
.lb-img-wrap {
  position: relative;
  max-width: 88vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center;
}
#lb-img {
  max-width: 88vw; max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
  transition: opacity .3s ease, transform .3s ease;
}
#lb-img.lb-loading {
  opacity: 0; transform: scale(.97);
}
.lb-caption {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 1.2rem; padding: 0 1rem;
}
#lb-loc {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
}
#lb-title {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: rgba(242,237,230,.7);
}
#lb-counter {
  font-size: .6rem; letter-spacing: .2em;
  color: rgba(242,237,230,.25); margin-left: auto;
}
.lb-close {
  position: fixed; top: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: rgba(242,237,230,.8); font-size: 1rem;
  cursor: pointer; z-index: 9001;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.lb-close:hover { background: rgba(255,255,255,.12); transform: rotate(90deg); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: rgba(242,237,230,.8); font-size: 2rem; line-height: 1;
  cursor: pointer; z-index: 9001;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .3s;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover { background: rgba(184,150,92,.2); transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { background: rgba(184,150,92,.2); transform: translateY(-50%) translateX(3px); }

/* Keyboard focus */
.p-item-lg:focus { outline: 2px solid var(--gold); outline-offset: -2px; }
.p-bg {
  position: absolute; inset: 0; overflow: hidden;
  transition: transform .8s cubic-bezier(.77,0,.18,1);
}
.p-bg img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  filter: brightness(.82) contrast(1.05) saturate(.9);
  transition: transform .8s cubic-bezier(.77,0,.18,1);
}
/* Masonry: img fills item */
.p-item-lg .p-bg {
  position: absolute; inset: 0;
}
.p-item-lg .p-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.p-item-lg .p-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s;
}
.p-item-lg:hover .p-overlay { opacity: 1; }
.p-item-lg .p-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.2rem 1.4rem;
  transform: translateY(100%); transition: transform .45s cubic-bezier(.77,0,.18,1);
}
.p-item-lg:hover .p-info { transform: translateY(0); }
.p-item:hover .p-bg img { transform: scale(1.08); }
.p-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s;
}
.p-item:hover .p-overlay { opacity: 1; }
.p-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.8rem;
  transform: translateY(100%); transition: transform .5s cubic-bezier(.77,0,.18,1);
}
.p-item:hover .p-info { transform: translateY(0); }
.p-loc {
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: .3rem;
}
.p-title {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.3rem; color: var(--off-white);
}

/* === PROCESS === */
#process { background: var(--off-white); padding: 8rem 3.5rem; }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 4rem; border-top: 1px solid rgba(0,0,0,.1);
}
.proc-item {
  padding: 3rem 2.5rem 3rem 0;
  border-right: 1px solid rgba(0,0,0,.1);
}
.proc-item:last-child { border-right: none; }
.proc-icon { display: inline-block; width: 32px; height: 1px; background: var(--gold); margin-bottom: 1.5rem; }
.proc-n {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 4.5rem; line-height: 1; color: rgba(0,0,0,.06); margin-bottom: .5rem;
}
.proc-title {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  font-weight: 700; color: var(--black); margin-bottom: .8rem;
}
.proc-desc { font-size: .82rem; color: var(--muted); line-height: 1.85; }

/* === TESTIMONIALS === */
#testimonials { background: var(--forest); padding: 8rem 3.5rem; }
.testi-big { max-width: 900px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: 'Playfair Display', serif; font-size: 8rem;
  line-height: .6; color: var(--gold); opacity: .3; margin-bottom: 1rem;
}
.testi-text-big {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.4;
  color: var(--off-white); margin-bottom: 2rem;
}
.testi-author { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(242,237,230,.3); }
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; letter-spacing: .2em; }
.testi-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 4rem; }
.tcard {
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(184,150,92,.2);
  padding: 2.5rem;
}
.tcard-q {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: rgba(242,237,230,.7); line-height: 1.85; margin-bottom: 1.5rem;
}
.tcard-author { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(242,237,230,.25); }
.tcard-stars { color: var(--gold); font-size: .7rem; margin-bottom: .8rem; }

/* === LOCATIONS === */
#locations { background: var(--cream); padding: 8rem 3.5rem; }
.loc-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(0,0,0,.08); margin-top: 4rem;
}
.loc-item {
  background: var(--cream); padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: .5rem;
  position: relative; overflow: hidden; transition: background .3s;
}
.loc-item:hover { background: #f0e8dc; }
.loc-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.loc-item:hover::after { transform: scaleX(1); }
.loc-ch { font-size: .55rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.loc-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--black); }
.loc-sub { font-size: .75rem; color: var(--muted); }

/* === BLOG === */
#blog { background: var(--off-white); padding: 8rem 3.5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 4rem; background: rgba(0,0,0,.06); }
.blog-card { background: var(--cream); overflow: hidden; transition: background .3s; }
.blog-card:hover { background: #f0e8dc; }
.blog-card-img {
  aspect-ratio: 16/10; overflow: hidden;
  background: linear-gradient(145deg, #2a1e0e 0%, #1a1208 100%);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 2rem; }
.blog-card-cat {
  font-size: .55rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .8rem;
}
.blog-card-title {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: .8rem;
}
.blog-card-excerpt { font-size: .82rem; color: var(--muted); line-height: 1.8; }
.blog-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(0,0,0,.07);
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.blog-read-more { color: var(--gold); transition: letter-spacing .3s; }
.blog-card:hover .blog-read-more { letter-spacing: .15em; }

/* Single Blog Post */
.single-post { padding: 8rem 3.5rem; max-width: 820px; margin: 0 auto; }
.post-header { margin-bottom: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(0,0,0,.08); }
.post-category {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem; display: block;
}
.post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900; line-height: 1.05; color: var(--black);
}
.post-meta {
  margin-top: 1.5rem; font-size: .7rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted);
}
.post-content { font-size: 1.05rem; color: #3a3530; line-height: 1.9; }
.post-content h2 {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  font-weight: 700; color: var(--black);
  margin: 3rem 0 1.2rem;
}
.post-content h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  font-weight: 700; margin: 2rem 0 .8rem;
}
.post-content p { margin-bottom: 1.5rem; }
.post-content img { width: 100%; margin: 2.5rem 0; }
.post-content a { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* === CONTACT === */
#kontakt { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.kontakt-left {
  background: var(--black); padding: 7rem 4rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.kontakt-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1.0; font-weight: 900; color: var(--off-white);
}
.kontakt-title em { font-style: italic; color: var(--gold); }
.kontakt-note { font-size: .85rem; color: rgba(242,237,230,.35); line-height: 1.85; max-width: 360px; margin-top: 2rem; }
.kontakt-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: auto; padding-top: 3rem; }
.kinfo-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.kinfo-icon {
  width: 38px; height: 38px; border: 1px solid rgba(184,150,92,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .9rem; flex-shrink: 0;
}
.kinfo-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(242,237,230,.2); margin-bottom: .2rem; }
.kinfo-val { font-size: .88rem; color: rgba(242,237,230,.7); }
.kinfo-val a { transition: color .2s; }
.kinfo-val a:hover { color: var(--gold); }
.travel-note { margin-top: 2rem; padding: 1rem 1.2rem; border-left: 2px solid rgba(184,150,92,.3); font-size: .75rem; color: rgba(242,237,230,.3); line-height: 1.7; }
.kontakt-right { background: var(--off-white); padding: 7rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--black); margin-bottom: 2.5rem; }
.form-grid { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fgroup { display: flex; flex-direction: column; gap: .4rem; }
.fgroup label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.fgroup input, .fgroup select, .fgroup textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(0,0,0,.15);
  color: var(--black); padding: .8rem 0;
  font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 300;
  outline: none; transition: border-color .3s; appearance: none;
}
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--gold); }
.fgroup textarea { resize: none; min-height: 100px; }
.btn-send {
  align-self: flex-start; margin-top: 1.5rem;
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 1rem 2.5rem; background: var(--black); color: var(--off-white);
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500; position: relative; overflow: hidden; transition: color .3s;
}
.btn-send::before {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: translateX(-101%); transition: transform .45s cubic-bezier(.77,0,.18,1);
}
.btn-send:hover::before { transform: translateX(0); }
.btn-send span, .btn-send svg { position: relative; z-index: 1; }

/* === FOOTER === */
#colophon {
  background: #05050a; padding: 2rem 3.5rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.04);
}
.site-footer-logo { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--gold); }
.footer-legal { font-size: .6rem; letter-spacing: .12em; color: rgba(255,255,255,.15); }
.footer-legal a { transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* === ANIMATIONS === */
.anim-in { opacity: 1; transform: translateY(0); transition: opacity .9s ease, transform .9s ease; }
body.js-ready .anim-in { opacity: 0; transform: translateY(28px); }
body.js-ready .anim-in.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 9rem 2rem 5rem; }
  #about { grid-template-columns: 1fr; }
  .about-left, .about-right { padding: 4rem 2rem; }
  #stats { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .port-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .p-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .port-grid-large { columns: 2; }
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
  .testi-cards, .blog-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: repeat(2,1fr); }
  #kontakt { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  #site-header { padding: 1.5rem 2rem; mix-blend-mode: normal; background: rgba(8,8,10,.9); }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .section-header { grid-template-columns: 1fr; }
  .port-header { flex-direction: column; align-items: flex-start; gap: 2rem; }
  #leistungen, #portfolio, #process, #testimonials, #locations, #blog, #kontakt { padding: 5rem 2rem; }
  #colophon { flex-direction: column; gap: 1rem; text-align: center; }
}
