/* ================================================================
   LUSTA S脕RK脕NY MASSZ脕ZS 脡S MOZG脕S
   Jenei Zsolt 鈥?Aldea St煤di贸, Budapest
   F艖st铆luslap 路 style.css

   TESTRESZAB脕S:
   鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€
   鈥?Sz铆nek:       m贸dos铆tsa a --color-* v谩ltoz贸kat (lejjebb)
   鈥?Bet疟t铆pus:    cser茅lje a Google Fonts importot + --font-*
   鈥?脕rak, sz枚veg: csak a HTML f谩jlokban szerepelnek
   鈥?K茅pek:        az .img-ph elemeket cser茅lje val贸di <img>-re
   ================================================================ */

/* 鈹€鈹€ FONTS 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* 鈹€鈹€ CUSTOM PROPERTIES 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
:root {
  /* 鈹€ BRAND COLORS 鈹€ m贸dos铆tsa ide a brand sz铆neket 鈹€ */
  --color-primary:        #003153;   /* porosz k茅k */
  --color-primary-dark:   #002244;
  --color-primary-light:  #E8F0F7;   /* halv谩ny k茅k t贸nus */
  --color-accent:         #9B7B55;   /* meleg konyak / borosty谩n */
  --color-accent-dark:    #7A5F3E;
  --color-accent-light:   #F7EFE5;   /* kr茅msz铆n alap */

  /* 鈹€ BACKGROUNDS 鈹€ */
  --color-bg:             #FAF8F5;   /* meleg t枚rtfeh茅r */
  --color-bg-alt:         #F2EDE6;   /* meleg b茅zs */
  --color-bg-card:        #FFFFFF;
  --color-bg-dark:        #003153;   /* s枚t茅tk茅k szekci贸k */

  /* 鈹€ TEXT 鈹€ */
  --color-text:           #1C1C1A;
  --color-text-medium:    #4A4A46;
  --color-text-muted:     #8A8278;
  --color-text-on-dark:   rgba(255, 255, 255, .88);

  /* 鈹€ UI 鈹€ */
  --color-border:         #E5DDD5;
  --color-border-focus:   #9B7B55;
  --color-success:        #4A7A5F;
  --color-success-light:  #EEF6F2;
  --color-error:          #B94040;

  /* 鈹€ VAS脕RNAP (Sunday) highlight 鈹€ */
  --color-sun:            #9B7B55;
  --color-sun-bg:         #FDF5EE;
  --color-sun-border:     #DEB896;
  --color-sun-text:       #6B4F2E;

  /* 鈹€ TYPOGRAPHY 鈹€ */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* 鈹€ SPACING 鈹€ */
  --section-py:        7rem;
  --section-py-mobile: 4rem;
  --container-max:     1160px;
  --container-px:      1.5rem;

  /* 鈹€ RADII 鈹€ */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* 鈹€ SHADOWS 鈹€ */
  --shadow-xs: 0 1px 3px  rgba(0, 49, 83, .06);
  --shadow-sm: 0 2px 12px rgba(0, 49, 83, .08);
  --shadow-md: 0 4px 28px rgba(0, 49, 83, .10);
  --shadow-lg: 0 8px 48px rgba(0, 49, 83, .13);
  --shadow-focus: 0 0 0 3px rgba(155, 123, 85, .28);

  /* 鈹€ TRANSITIONS 鈹€ */
  --t-fast: 150ms ease;
  --t-base: 240ms ease;
  --t-slow: 380ms ease;

  /* 鈹€ Z-INDEX 鈹€ */
  --z-nav:   100;
  --z-modal: 200;
}

/* 鈹€鈹€ RESET 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a              { color: inherit; text-decoration: none; }
ul, ol         { list-style: none; }
button         { font-family: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* 鈹€鈹€ LAYOUT 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

section { padding: var(--section-py) 0; }

/* 鈹€鈹€ TYPOGRAPHY 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; font-family: var(--font-body); }

p { color: var(--color-text-medium); line-height: 1.8; }

.lead { font-size: 1.1rem; }

/* 鈹€鈹€ SECTION HEADER 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.sec-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent-light);
  background: var(--color-accent-light);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.sec-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.sec-head h2 { margin-bottom: 14px; }
.sec-head p  { font-size: 1rem; }

/* Decorative rule under section heading */
.sec-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* 鈹€鈹€ BUTTONS 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all var(--t-base);
  border: 1.5px solid transparent;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}
.btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0,49,83,.28);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0,49,83,.34);
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(155,123,85,.28);
}
.btn-accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(155,123,85,.34);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.75);
}

.btn-outline-accent {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline-accent:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
}

.btn-lg   { padding: 15px 36px; font-size: .95rem; }
.btn-sm   { padding: 9px 20px; font-size: .8rem; }
.btn-full { width: 100%; }

/* 鈹€鈹€ IMAGE PLACEHOLDERS 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
/* Cser茅lje le ezeket val贸di <img> elemekre! */
.img-ph {
  background: var(--color-bg-alt);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1.5px dashed var(--color-border);
  color: var(--color-text-muted);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--color-border) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .45;
}

.img-ph > * { position: relative; z-index: 1; }

.img-ph.real-img {
  border: 0;
  background: transparent;
}
.img-ph.real-img::before {
  display: none;
}
.img-ph.real-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Landscape/action photos 鈥?keep face near top of frame */
.img-ph.real-img img.hero-photo {
  object-position: center top;
}

/* Portrait person photos 鈥?always show face, never crop head */
.img-face-portrait {
  object-position: center 12%;
}

.img-ph-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
}

.img-ph-portrait  { aspect-ratio: 3/4; }
.img-ph-landscape { aspect-ratio: 16/9; }
.img-ph-square    { aspect-ratio: 1; }

/* 鈹€鈹€ NAVIGATION 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  background: rgba(250, 248, 245, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--t-base);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* Logo 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover .logo-mark { transform: scale(1.04); }

.logo-mark {
  width: 38px; height: 38px;
  flex-shrink: 0;
  transition: transform var(--t-base);
}

.logo-text { line-height: 1.1; }
.logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: .01em;
}
.logo-sub {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Nav links 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: var(--r-sm);
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-text-medium);
  transition: all var(--t-fast);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.nav-right { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--t-fast);
}
.nav-burger:hover { background: var(--color-bg-alt); }
.nav-burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--t-base);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 16px 20px;
  z-index: calc(var(--z-nav) - 1);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  font-size: .95rem;
  font-weight: 500;
  color: var(--color-text-medium);
  transition: all var(--t-fast);
  margin-bottom: 2px;
}
.mobile-menu a:hover, .mobile-menu a.active {
  background: var(--color-primary-light);
  color: var(--color-primary);
}
.mobile-menu .btn { margin-top: 10px; width: 100%; justify-content: center; }

.page-top { padding-top: 72px; }

/* 鈹€鈹€ HERO 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.hero {
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(155,123,85,.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 5%  85%, rgba(0,49,83,.05)  0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  position: relative;
}

/* Eyebrow tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-sun-bg);
  border: 1px solid var(--color-sun-border);
  color: var(--color-sun-text);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--color-sun);
  border-radius: 50%;
}

.hero-title { margin-bottom: 22px; letter-spacing: -.01em; }
.hero-title em { font-style: italic; color: var(--color-accent); }

.hero-sub {
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Divider with info */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.hero-meta-icon {
  width: 30px; height: 30px;
  background: var(--color-primary-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Hero image */
.hero-img-wrap {
  position: relative;
}
.hero-img-wrap .img-ph {
  aspect-ratio: 3/4;
  width: 100%;
}

/* Floating accent card */
.hero-card-float {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--color-bg-card);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  min-width: 200px;
}
.hcf-label { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 4px; }
.hcf-val   { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--color-primary); }

/* 鈹€鈹€ SUNDAY BAND 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.sunday-band {
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.sunday-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(155,123,85,.18) 0%, transparent 65%);
  pointer-events: none;
}

.sunday-band > .container { position: relative; }

.sunday-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(155,123,85,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-accent-light);
}

.sunday-band blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: #fff;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  line-height: 1.35;
  font-weight: 400;
}

.sunday-band p {
  color: rgba(255,255,255,.68);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: .95rem;
}

/* 鈹€鈹€ WHY CHOOSE US 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.why { background: var(--color-bg-alt); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--color-bg-card);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-base);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

.why-icon {
  width: 48px; height: 48px;
  background: var(--color-primary-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p  { font-size: .88rem; }

/* 鈹€鈹€ SERVICE PREVIEW CARDS (landing) 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.services-preview { background: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Teljes lista (services page) */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-category {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 1rem;
}
.service-category h3 {
  font-size: 1.3rem;
  white-space: nowrap;
}
.service-category-line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.service-card {
  background: var(--color-bg-card);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-light);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.service-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.25;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.service-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
}

.service-desc {
  font-size: .88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-card-footer {
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

/* 鈹€鈹€ HOW IT WORKS (Steps) 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.how { background: var(--color-bg-alt); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(50% / 4 + 24px);
  right: calc(50% / 4 + 24px);
  border-top: 1.5px dashed var(--color-border);
  pointer-events: none;
}

.step { text-align: center; position: relative; }

.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(0,49,83,.28);
}

.step h4 { margin-bottom: 8px; font-size: 1rem; font-family: var(--font-heading); font-size: 1.1rem; }
.step p  { font-size: .87rem; max-width: 200px; margin: 0 auto; }

/* 鈹€鈹€ CTA BAND 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.cta-band {
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--section-py) 0;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% -5%, rgba(155,123,85,.22) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band > .container { position: relative; }
.cta-band .sec-tag  { background: rgba(155,123,85,.2); border-color: rgba(155,123,85,.35); color: #e8c99a; }
.cta-band h2        { color: #fff; margin-bottom: 14px; }
.cta-band > .container > p { color: rgba(255,255,255,.68); max-width: 480px; margin: 0 auto 2.5rem; font-size: 1rem; }
.cta-actions        { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* 鈹€鈹€ PAGE HERO (inner pages) 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.page-hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(160deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero > .container > p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* 鈹€鈹€ ABOUT / R脫LAM PAGE 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.bio-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

.bio-img-wrap { position: sticky; top: 92px; }
.bio-img-wrap .img-ph { aspect-ratio: 3/4; }

/* Landing about grid 鈥?replaces inline style in index.html */
.about-grid-landing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Landscape frame that keeps subject near top 鈥?replaces inline aspect-ratio */
.hero-face-frame {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.bio-text h2 { margin-bottom: 1.25rem; }
.bio-text p  { margin-bottom: 1rem; }
.bio-text p:last-of-type { margin-bottom: 0; }

.bio-text blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-primary);
  border-left: 3px solid var(--color-accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}

/* Techniques list */
.techniques { background: var(--color-bg-alt); }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tech-card {
  background: var(--color-bg-card);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--color-border);
  transition: all var(--t-base);
}
.tech-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.tech-icon {
  width: 44px; height: 44px;
  background: var(--color-accent-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.tech-card h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 6px; }
.tech-card p  { font-size: .86rem; }

/* 鈹€鈹€ CONTACT / BOOKING PAGE 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.contact-wrap { background: #fff; scroll-margin-top: 88px; }

.contact-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Sidebar */
.contact-side {
  background: var(--color-bg);
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 1px solid var(--color-border);
  position: sticky;
  top: 88px;
}
.contact-side h3 { font-size: 1.2rem; margin-bottom: 1.5rem; }

.ci-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 1.75rem; }
.ci-item { display: flex; align-items: flex-start; gap: 12px; }
.ci-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--color-primary-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.ci-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--color-text-muted); margin-bottom: 3px; }
.ci-val   { font-size: .88rem; font-weight: 500; color: var(--color-text); line-height: 1.5; }
.ci-val a { color: var(--color-primary); }
.ci-val a:hover { text-decoration: underline; }

.ci-divider { height: 1px; background: var(--color-border); margin: 1.5rem 0; }

/* Map placeholder */
.map-ph {
  background: var(--color-bg-alt);
  border-radius: var(--r-md);
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--color-border);
  color: var(--color-text-muted);
  font-size: .78rem;
  font-weight: 500;
  gap: 8px;
  text-align: center;
  padding: 12px;
  /* TODO: Google Maps embed helye 鈥?cser茅lje le egy <iframe>-re:
     <iframe src="https://maps.google.com/maps?q=Budapest+P谩va+utca+27&output=embed"
             width="100%" height="160" style="border:0" allowfullscreen loading="lazy"></iframe>
  */
}

/* 鈹€鈹€ FORM TABS 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.form-tabs {
  display: flex;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  padding: 4px;
  gap: 4px;
  margin-bottom: 2rem;
}
.tab-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--t-fast);
  border: none;
  background: none;
  font-family: var(--font-body);
}
.tab-btn:hover:not(.active) { color: var(--color-text); background: rgba(0,49,83,.06); }
.tab-btn.active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,49,83,.28);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* 鈹€鈹€ FORMS 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.form-wrap {
  background: var(--color-bg-card);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.form-sec-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent-light);
}

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 7px;
  letter-spacing: .02em;
}
.form-label .req { color: var(--color-accent); margin-left: 2px; }

.form-input,
.form-textarea,
.form-select {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-md);
  font-size: .9rem;
  color: var(--color-text);
  background: var(--color-bg-card);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--color-border-focus);
  box-shadow: var(--shadow-focus);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-text-muted); }
.form-textarea { resize: vertical; min-height: 100px; }

/* Custom select arrow */
.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--color-text-muted);
  pointer-events: none;
}
.select-wrap .form-select { padding-right: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-error {
  display: block;
  color: var(--color-error);
  font-size: .76rem;
  margin-top: 4px;
}

/* 鈹€鈹€ CALENDAR 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.cal-wrap {
  background: var(--color-bg);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.cal-legend {
  display: flex;
  gap: 14px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.leg-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.leg-dot-avail   { background: var(--color-primary); }
.leg-dot-sun     { background: var(--color-sun); }
.leg-dot-past    { background: var(--color-border); }

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.cal-month-lbl {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
}
.cal-nav-btns { display: flex; gap: 6px; }
.cal-nav-btn {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text-medium);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
}
.cal-nav-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }

.cal-dn {
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 6px 0;
}
/* Sunday column header */
.cal-dn:last-child { color: var(--color-sun); }

.cal-d {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: .82rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: default;
  transition: all var(--t-fast);
  position: relative;
}

.cal-d.empty   { }
.cal-d.past    { color: var(--color-border); }
.cal-d.unavail { color: var(--color-border); }

.cal-d.avail {
  cursor: pointer;
  color: var(--color-text);
  font-weight: 600;
}
.cal-d.avail:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

/* Sunday special styling */
.cal-d.sun-day {
  color: var(--color-sun-text);
  font-weight: 700;
}
.cal-d.sun-day.avail {
  background: var(--color-sun-bg);
  border: 1px solid var(--color-sun-border);
  border-radius: var(--r-sm);
}
.cal-d.sun-day.avail:hover {
  background: var(--color-sun);
  color: #fff;
  border-color: var(--color-sun);
}
.cal-d.sun-day.avail::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-sun);
}
.cal-d.sun-day.avail:hover::after { background: rgba(255,255,255,.7); }

.cal-d.today { font-weight: 700; }
.cal-d.today::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-primary);
}

.cal-d.picked {
  background: var(--color-primary) !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,49,83,.32);
  border-color: transparent !important;
}
.cal-d.picked::after,
.cal-d.picked::before { background: rgba(255,255,255,.6) !important; }

/* Time slots */
.time-wrap { display: none; }
.time-wrap.show { display: block; }

.time-head {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text-muted);
  margin-bottom: .75rem;
  margin-top: 1.25rem;
}

.time-subhead {
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: .6rem;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 1rem;
}

.time-slot {
  padding: 9px 6px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-sm);
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-text-medium);
  background: var(--color-bg-card);
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: var(--font-body);
}
.time-slot:hover:not(.ts-booked):not(.ts-picked) {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}
.time-slot.ts-picked {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}
.time-slot.ts-booked { opacity: .3; cursor: not-allowed; text-decoration: line-through; }

/* Booking summary pill */
.booking-pill {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: var(--color-primary-light);
  border: 1.5px solid rgba(0,49,83,.18);
  border-radius: var(--r-md);
  padding: 12px 16px;
  margin-top: 1rem;
  font-size: .85rem;
}
.booking-pill.show { display: flex; }
.booking-pill strong { color: var(--color-primary); }

.pill-clear {
  background: none; border: none;
  font-size: .74rem;
  color: var(--color-text-muted);
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--font-body);
}
.pill-clear:hover { color: var(--color-text); }

.cal-err { display: none; font-size: .78rem; color: var(--color-error); margin-top: .5rem; }
.cal-err.show { display: block; }

/* 鈹€鈹€ SUCCESS BOX 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.success-box {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-success-light);
  border: 1.5px solid rgba(74,122,95,.2);
  border-radius: var(--r-lg);
}
.success-box.show { display: block; }

.success-icon-wrap {
  width: 60px; height: 60px;
  background: var(--color-success);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.success-box h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-success);
  margin-bottom: 8px;
}
.success-box p { font-size: .88rem; color: var(--color-text-muted); }

/* 鈹€鈹€ FOOTER 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
footer {
  background: var(--color-primary);
  color: rgba(255,255,255,.72);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .85rem; max-width: 260px; line-height: 1.7; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.62);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: #fff; }
.footer-links span { font-size: .85rem; color: rgba(255,255,255,.48); line-height: 1.6; display: block; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  color: rgba(255,255,255,.32);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.18);
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.footer-social:hover {
  color: #fff;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
}

@media (max-width: 768px) {
  .footer-bottom-right { justify-content: center; }
}

/* 鈹€鈹€ UTILITIES 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
.text-center { text-align: center; }
.text-muted  { color: var(--color-text-muted); font-size: .85rem; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

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

/* 鈹€鈹€ RESPONSIVE 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
@media (max-width: 1024px) {
  .hero-grid      { grid-template-columns: 1fr; }
  .hero-sub       { max-width: 100%; }

  /* Hero image: show below text instead of hiding */
  .hero-img-wrap  { margin-top: 2.5rem; }
  .hero-img-wrap .img-ph {
    aspect-ratio: 4/3;
    max-height: 400px;
    width: 100%;
  }
  .hero-img-wrap .img-ph img { object-position: center 15%; }

  .bio-grid     { grid-template-columns: 1fr; }
  .bio-img-wrap { position: static; }
  /* Bio portrait: 4/3 keeps more face visible than 16/9 */
  .bio-img-wrap .img-ph {
    aspect-ratio: 4/3;
    max-height: 400px;
    width: 100%;
  }
  .bio-img-wrap .img-ph img { object-position: center 12%; }

  /* About landing grid: stack on tablet */
  .about-grid-landing {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-face-frame { aspect-ratio: 16/9; max-height: 360px; }
  .img-ph.real-img.hero-face-frame img { object-position: center top; }

  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .tech-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-side   { position: static; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: var(--section-py-mobile) 0; }

  .nav-links, .nav-right .btn { display: none; }
  .nav-burger { display: flex; }

  .hero { min-height: auto; padding: 3rem 0; }
  .hero-meta { flex-wrap: wrap; gap: 1rem; }

  /* Hero image: shorter on mobile, face still visible */
  .hero-img-wrap .img-ph {
    aspect-ratio: 3/2;
    max-height: 280px;
  }
  .hero-img-wrap .img-ph img { object-position: center top; }

  /* Bio image: prioritise face on smaller screens */
  .bio-img-wrap .img-ph {
    aspect-ratio: 3/2;
    max-height: 280px;
  }
  .bio-img-wrap .img-ph img { object-position: center top; }

  .hero-face-frame { aspect-ratio: 16/9; max-height: 260px; }

  .services-grid,
  .services-full-grid { grid-template-columns: 1fr; }
  .service-category   { grid-column: 1; }

  .steps         { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .steps::before { display: none; }
  .why-grid      { grid-template-columns: 1fr; }
  .tech-grid     { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .time-grid     { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .hero-actions  { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  :root { --container-px: 1rem; }
  h1 { font-size: 2.1rem; }
  .steps       { grid-template-columns: 1fr; }
  .form-wrap   { padding: 1.5rem; }
  .cal-wrap    { padding: 1.25rem; }
  .time-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero-card-float { display: none; }

  /* Tightest screens: keep images meaningful but compact */
  .hero-img-wrap .img-ph {
    aspect-ratio: 16/9;
    max-height: 220px;
  }
  .bio-img-wrap .img-ph {
    aspect-ratio: 16/9;
    max-height: 210px;
  }
  .hero-face-frame { max-height: 210px; }
}

/* 鈹€鈹€ REDUCED MOTION 鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€鈹€ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}



/* ══════════════════════════════════════════════════════════════
   LANDING PAGE — premium minimalist redesign
   ══════════════════════════════════════════════════════════════ */

/* Transparent navbar at top of landing page */
.lp-page .navbar {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.lp-page .navbar.scrolled {
  background: rgba(250, 248, 245, .96);
  border-bottom-color: #E5DDD5;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lp-page .navbar:not(.scrolled) .logo-name { color: #fff; }
.lp-page .navbar:not(.scrolled) .logo-sub  { color: rgba(255,255,255,.55); }
.lp-page .navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,.82); }
.lp-page .navbar:not(.scrolled) .nav-links a:hover { background: rgba(255,255,255,.12); color: #fff; }
.lp-page .navbar:not(.scrolled) .nav-burger span { background: #fff; }
.lp-page .navbar:not(.scrolled) .btn-primary {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.45);
  color: #fff;
  box-shadow: none;
}
.lp-page .navbar:not(.scrolled) .btn-primary:hover { background: rgba(255,255,255,.25); }

/* Full-screen hero */
.lp-hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}
.lp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    170deg,
    rgba(0,25,50,.70) 0%,
    rgba(0,49,83,.50) 55%,
    rgba(0,15,35,.74) 100%
  );
}
.lp-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 820px;
  width: 100%;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #F7EFE5;
  margin-bottom: 2rem;
  opacity: 0;
  animation: lpFadeUp .9s cubic-bezier(.22,1,.36,1) .15s forwards;
}
.lp-eyebrow::before,
.lp-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #9B7B55;
  flex-shrink: 0;
}
.lp-hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.2rem, 8.5vw, 6.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -.025em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: lpFadeUp .9s cubic-bezier(.22,1,.36,1) .35s forwards;
}
.lp-hero-h1 em {
  font-style: italic;
  color: #F7EFE5;
  font-weight: 400;
}
.lp-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.70);
  letter-spacing: .01em;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: lpFadeUp .9s cubic-bezier(.22,1,.36,1) .55s forwards;
}
.lp-hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: lpFadeUp .9s cubic-bezier(.22,1,.36,1) .72s forwards;
}

/* Scroll indicator */
.lp-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: lpFadeUp .6s ease 1.2s forwards;
}
.lp-scroll-hint span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,.55), transparent);
  animation: lpScrollLine 2.2s ease-in-out 1.5s infinite;
  transform-origin: top;
}
@keyframes lpScrollLine {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  60%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* Quote section */
.lp-quote {
  background: #003153;
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 120% at 50% -10%, rgba(155,123,85,.14) 0%, transparent 65%);
  pointer-events: none;
}
.lp-quote > .container { position: relative; }
.lp-quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem;
  line-height: .6;
  color: #9B7B55;
  opacity: .45;
  display: block;
  margin-bottom: 1.5rem;
  user-select: none;
}
.lp-quote-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.4;
}
.lp-quote-attr {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9B7B55;
}

/* Visual split section */
.lp-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.lp-visual-img {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  padding: 3rem 2.5rem;
}
.lp-visual-img img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  transition: transform .9s ease;
}
.lp-visual-img:hover img { transform: scale(1.04); }
.lp-visual-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5.5rem;
  background: #F2EDE6;
}
.lp-visual-text .sec-tag { margin-bottom: 1.25rem; }
.lp-visual-text h2 { margin-bottom: 1.25rem; font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
.lp-visual-text p  { margin-bottom: 2.5rem; max-width: 360px; font-size: .97rem; }

/* Services list */
.lp-services {
  background: #fff;
  padding: var(--section-py) 0;
}
.lp-services-head {
  text-align: center;
  margin-bottom: 4rem;
}
.lp-services-head h2 { margin-top: .5rem; }
.lp-svc-list {
  max-width: 660px;
  margin: 0 auto 3.5rem;
}
.lp-svc-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid #E5DDD5;
  text-decoration: none;
  color: #1C1C1A;
  transition: all 240ms ease;
}
.lp-svc-row:first-child { border-top: 1px solid #E5DDD5; }
.lp-svc-row:hover { padding-left: .9rem; color: #003153; }
.lp-svc-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: .82rem;
  font-weight: 600;
  color: #8A8278;
  width: 22px;
  flex-shrink: 0;
  transition: color 240ms ease;
}
.lp-svc-row:hover .lp-svc-num { color: #9B7B55; }
.lp-svc-name {
  flex: 1;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -.01em;
}
.lp-svc-price {
  font-size: .8rem;
  font-weight: 700;
  color: #9B7B55;
  letter-spacing: .03em;
  flex-shrink: 0;
}
.lp-svc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #E5DDD5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A8278;
  flex-shrink: 0;
  transition: all 240ms ease;
}
.lp-svc-row:hover .lp-svc-arrow {
  background: #003153;
  border-color: #003153;
  color: #fff;
  transform: translateX(3px);
}

/* CTA section */
.lp-cta {
  background: #003153;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 8rem 0;
}
.lp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -5%, rgba(155,123,85,.2) 0%, transparent 60%);
  pointer-events: none;
}
.lp-cta > .container { position: relative; }
.lp-cta-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #9B7B55;
  display: block;
  margin-bottom: 1.75rem;
}
.lp-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 2.5rem;
  line-height: 1.12;
}
.lp-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1),
              transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .28s; }
.reveal[data-delay="4"] { transition-delay: .38s; }

/* Hero entrance animation */
@keyframes lpFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Landing page responsive */
@media (max-width: 1024px) {
  .lp-visual { grid-template-columns: 1fr; }
  .lp-visual-img { height: auto; }
  .lp-visual-text { padding: 4rem 3rem; }
  .lp-visual-text p { max-width: 100%; }
}
@media (max-width: 768px) {
  .lp-hero-h1 { font-size: clamp(2.8rem, 11vw, 4rem); }
  .lp-hero-sub { font-size: .95rem; }
  .lp-hero-cta { flex-direction: column; align-items: center; }
  .lp-quote { padding: 5rem 0; }
  .lp-quote-mark { font-size: 4rem; }
  .lp-visual-img { height: auto; }
  .lp-visual-text { padding: 3rem 1.5rem; }
  .lp-svc-name { font-size: 1.15rem; }
  .lp-cta { padding: 5.5rem 0; }
  .lp-cta-actions { flex-direction: column; align-items: center; }
  .lp-scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .lp-hero-h1 { font-size: clamp(2.4rem, 12vw, 3.2rem); }
  .lp-eyebrow { font-size: .62rem; letter-spacing: .16em; }
  .lp-eyebrow::before, .lp-eyebrow::after { width: 16px; }
}

/* Reduced motion overrides for LP */
@media (prefers-reduced-motion: reduce) {
  .lp-eyebrow, .lp-hero-h1, .lp-hero-sub,
  .lp-hero-cta, .lp-scroll-hint { opacity: 1; animation: none; }
  .lp-scroll-hint span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .lp-visual-img img { transition: none; }
}

/* Services page cinematic hero */
.svc-page-hero {
  position: relative;
  height: 52vh;
  min-height: 340px;
  max-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;
}
.svc-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svc-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.svc-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,25,50,.82) 0%,
    rgba(0,49,83,.45) 50%,
    rgba(0,20,40,.25) 100%
  );
}
.svc-page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 3.5rem;
  text-align: left;
}
.svc-hero-tag {
  background: rgba(155,123,85,.22);
  border-color: rgba(155,123,85,.4);
  color: #F7EFE5;
}
.svc-page-hero-content h1 {
  color: #fff;
  margin-bottom: .75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.svc-page-hero-content p {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  max-width: 480px;
}

@media (max-width: 768px) {
  .svc-page-hero {
    height: 44vh;
    min-height: 280px;
    align-items: flex-end;
  }
  .svc-page-hero-content { padding-bottom: 2.5rem; }
}