/* Fonts loaded via Google Fonts CDN in HTML <head> — see <link> tags */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --bg:        #F9F7F4;
  --fg:        #1A1C1A;
  --border:    #DDD8CF;
  --primary:   #2D4A3E;
  --pfg:       #ffffff;
  --secondary: #E8E3DA;
  --sfg:       #1A1C1A;
  --muted:     #E8E3DA;
  --mfg:       #666866;
  --accent:    #c5843a;
  --afg:       #ffffff;
  --sans:      'DM Sans', system-ui, sans-serif;
  --serif:     'Playfair Display', Georgia, serif;
  /* LAYOUT: match Tailwind px-6 md:px-12 with no max-width cap */
  --px:        1.5rem;
  --px-md:     3rem;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--sans); font-weight: 700; line-height: 1.1; }
main { flex: 1; }

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.fi {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fi.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(249,247,244,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
/* ============================================
   1440 PX CENTERED GRID
   Sections with colored backgrounds stay full-width;
   their inner content wrappers are capped at 90rem.
   Sections without special backgrounds are capped directly.
   ============================================ */
.header-inner,
.hero,
.services,
.team {
  max-width: 90rem; /* 1440px */
  margin-inline: auto;
  width: 100%;
}
.about-inner,
.digital-inner,
.contact-inner,
.footer-in {
  max-width: 90rem;
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--px);
}
.site-header.scrolled .header-inner { padding-block: 1rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; transition: opacity 0.2s; }
.logo:hover { opacity: 0.8; }
.logo-img { height: 3rem; width: auto; display: block; }
.logo-img-scrolled { display: none; }
.site-header.scrolled .logo-img-default { display: none; }
.site-header.scrolled .logo-img-scrolled { display: block; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a { font-size: 0.875rem; font-weight: 500; color: rgba(26,28,26,.75); transition: color 0.2s; }
.site-nav a:hover { color: var(--fg); }
.btn-nav { display: inline-flex; align-items: center; padding: 0.625rem 1.5rem; background: var(--accent); color: #fff; font-family: var(--sans); font-size: 0.875rem; font-weight: 500; transition: background 0.2s; }
.btn-nav:hover { background: #b3722e; }

/* Mobile menu */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--fg); transition: transform 0.3s, opacity 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 1.5rem; flex-direction: column; gap: 1.25rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 500; color: rgba(26,28,26,.75); padding: 0.25rem 0; }
.mobile-nav a:hover { color: var(--fg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 500; font-size: 1rem; padding: 0 2rem; height: 3.5rem; border: none; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #b3722e; }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-full { background: var(--accent); color: #fff; width: 100%; height: 3.5rem; }
.btn-full:hover { background: #b3722e; }

/* ============================================
   BADGE
   ============================================ */
.badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; background: var(--secondary); color: var(--sfg); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--sans); }
.badge-dot { width: 0.5rem; height: 0.5rem; background: var(--accent); border-radius: 50%; animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ============================================
   HERO
   — Full width like React's "container mx-auto px-6 md:px-12"
   ============================================ */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  padding-inline: var(--px);
  /* NO max-width — full browser width */
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
.hero-content { flex: 1; width: 100%; }
.hero-badge { margin-bottom: 2rem; }
.hero h1 {
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-family: var(--serif); font-style: italic; color: var(--primary); }
.hero-sub { font-size: 1.0625rem; color: var(--mfg); line-height: 1.75; margin-bottom: 2.5rem; max-width: 32rem; font-family: var(--sans); }
.hero-btns { display: flex; flex-direction: column; gap: 1rem; }
.hero-img { flex: 1; width: 100%; }
.hero-img-wrap { position: relative; aspect-ratio: 4/5; max-width: 32rem; margin-inline: auto; overflow: hidden; }
.hero-img-shadow { position: absolute; inset: 0; background: rgba(45,74,62,.1); transform: translate(1rem,1rem); z-index: 0; }
.hero-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 1; filter: contrast(1.05); }

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--primary); color: var(--pfg); padding: 6rem var(--px); }
.about-inner { display: grid; gap: 4rem; align-items: center; }
.about-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about h2 { font-size: 2.25rem; margin-bottom: 2rem; }
.about p { font-size: 1.0625rem; line-height: 1.8; color: rgba(255,255,255,.8); font-weight: 300; margin-bottom: 1.5rem; font-family: var(--sans); }
.about-link { display: inline-flex; align-items: center; gap: .75rem; font-weight: 500; font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 1px solid var(--accent); padding-bottom: .25rem; color: var(--pfg); cursor: default; font-family: var(--sans); }
.about-link svg { color: var(--accent); flex-shrink: 0; transition: transform 0.2s; }
.about-link:hover svg { transform: translateX(6px); }

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 8rem var(--px); }
.services-hdr { max-width: 48rem; margin-bottom: 4rem; }
.lbl { font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 1rem; }
.lbl-green { color: var(--primary); }
.services h2 { font-size: 2.25rem; line-height: 1.1; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 3rem 2rem; }
.svc { border-top: 1px solid var(--border); padding-top: 1.5rem; transition: border-color 0.2s; }
.svc:hover { border-top-color: var(--primary); }
.svc h3 { font-size: 1.375rem; margin-bottom: .75rem; transition: color 0.2s; font-weight: 500; }
.svc:hover h3 { color: var(--primary); }
.svc p { color: var(--mfg); line-height: 1.7; font-family: var(--sans); }

/* ============================================
   DIGITAL
   ============================================ */
.digital { background: var(--secondary); padding: 6rem var(--px); }
.digital-inner { display: grid; gap: 4rem; align-items: center; }
.digital h2 { font-size: 2.25rem; margin-bottom: 2rem; }
.digital-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.digital-list li { display: flex; align-items: flex-start; gap: 1rem; font-size: 1.0625rem; color: rgba(26,28,26,.8); font-family: var(--sans); }
.digital-list li svg { flex-shrink: 0; color: var(--accent); margin-top: .125rem; }
.digital-img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
.digital-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.digital-caption { position: absolute; inset: 0; background: linear-gradient(to top,rgba(45,74,62,.85) 0%,transparent 60%); display: flex; align-items: flex-end; padding: 2rem; }
.digital-caption p { font-family: var(--serif); font-size: 1.375rem; color: #fff; }

/* ============================================
   TEAM
   ============================================ */
.team { padding: 8rem var(--px); }
.team-hdr { text-align: center; max-width: 36rem; margin: 0 auto 5rem; }
.team h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.team-hdr p { font-size: 1.25rem; color: var(--mfg); font-family: var(--sans); }
.team-photo { width: 100%; aspect-ratio: 21/9; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,.15); margin-bottom: 6rem; background: var(--muted); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.team-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.team-av { width: 6rem; height: 6rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.5rem; color: #fff; margin-bottom: 1rem; transition: transform 0.25s; }
.team-card:hover .team-av { transform: translateY(-8px); }
.team-card h4 { font-size: 1.125rem; font-weight: 500; margin-bottom: .25rem; }
.team-card p { font-size: 0.875rem; color: var(--mfg); font-family: var(--sans); }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--primary); color: var(--pfg); padding: 6rem var(--px); }
.contact-inner { display: grid; gap: 4rem; }
.contact h2 { font-size: 2.25rem; margin-bottom: 2rem; }
.contact-lead { font-size: 1.0625rem; color: rgba(255,255,255,.8); font-weight: 300; line-height: 1.75; margin-bottom: 3rem; max-width: 28rem; font-family: var(--sans); }
.ci-list { display: flex; flex-direction: column; gap: 2rem; }
.ci { display: flex; align-items: flex-start; gap: 1rem; }
.ci svg { flex-shrink: 0; color: var(--accent); margin-top: .25rem; }
.ci h5 { font-size: 1.0625rem; font-weight: 500; margin-bottom: .375rem; }
.ci p, .ci a { font-size: 0.9375rem; font-weight: 300; color: rgba(255,255,255,.7); line-height: 1.7; font-family: var(--sans); }
.ci a:hover { color: var(--accent); }
.cf-wrap { background: var(--bg); color: var(--fg); padding: 2rem; }
.cf-wrap h3 { font-size: 1.5rem; margin-bottom: 1.5rem; font-weight: 500; }
.fg { margin-bottom: 1.5rem; }
.fg label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: .5rem; font-family: var(--sans); }
.fg input, .fg textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border); border-radius: 0; padding: .75rem 0; font-family: var(--sans); font-size: 0.9375rem; color: var(--fg); outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.fg input:focus, .fg textarea:focus { border-bottom-color: var(--primary); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--mfg); }
.fg textarea { min-height: 6.25rem; resize: none; }
.fg input.err, .fg textarea.err { border-bottom-color: #dc2626; }
.ferr { font-size: .75rem; color: #dc2626; margin-top: .25rem; display: none; font-family: var(--sans); }
.ferr.show { display: block; }
.fchk { display: flex; align-items: flex-start; gap: .5rem; margin-bottom: 1.5rem; }
.fchk input[type=checkbox] { width: 1rem; height: 1rem; margin-top: .125rem; flex-shrink: 0; accent-color: var(--primary); cursor: pointer; }
.fchk label { font-size: 0.8125rem; color: var(--mfg); line-height: 1.5; font-family: var(--sans); }
.fchk label a { text-decoration: underline; }
.fchk label a:hover { color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #15241E; color: #8C9B94; padding: 3rem var(--px); font-size: .875rem; font-family: var(--sans); }
.footer-in { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.footer-links { display: flex; align-items: center; gap: 1.5rem; }
.footer-links a:hover { color: #fff; }

/* ============================================
   STICKY INFO BUTTON
   ============================================ */
.sticky-info { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: .75rem; }
.sib { width: 3.5rem; height: 3.5rem; background: #C5843A; border-radius: 1rem; box-shadow: 0 10px 25px rgba(0,0,0,.2); display: flex; align-items: center; justify-content: center; transition: transform 0.15s; }
.sib:hover { transform: scale(1.07); }
.sib:active { transform: scale(.95); }
.sib svg { color: #fff; }
.sip { display: none; width: 18rem; background: #1a3530; border-radius: .75rem; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,.4); animation: panelIn .2s ease; }
.sip.open { display: block; }
@keyframes panelIn { from{opacity:0;transform:translateY(8px) scale(.97)} to{opacity:1;transform:translateY(0) scale(1)} }
.sip-in { padding: 1.5rem; }
.sip-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.sip-hdr span { color: #fff; font-weight: 700; font-size: .9375rem; letter-spacing: .03em; font-family: var(--sans); }
.sip-close { color: rgba(255,255,255,.4); transition: color .2s; padding: .25rem; }
.sip-close:hover { color: #fff; }
.sip-links { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.sip-link { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.7); padding: .25rem 0; transition: color .2s; font-family: var(--sans); }
.sip-link:hover { color: #fff; }
.sip-link svg { flex-shrink: 0; color: rgba(255,255,255,.35); transition: color .2s; }
.sip-link:hover svg { color: rgba(255,255,255,.7); }
.sip-div { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 1.25rem; }
.sip-dtitle { color: #fff; font-weight: 700; font-size: .9375rem; letter-spacing: .03em; display: block; margin-bottom: 1rem; font-family: var(--sans); }
.sip-dls { display: flex; flex-direction: column; gap: .75rem; }
.sip-dl { display: flex; align-items: flex-start; gap: .75rem; font-size: .8125rem; color: rgba(255,255,255,.7); line-height: 1.4; transition: color .2s; font-family: var(--sans); }
.sip-dl:hover { color: #fff; }
.sip-dlico { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,.45); transition: color .2s; }
.sip-dl:hover .sip-dlico { color: rgba(255,255,255,.7); }
.sip-dlarr { margin-left: auto; flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,.25); transition: color .2s; }
.sip-dl:hover .sip-dlarr { color: rgba(255,255,255,.6); }

/* ============================================
   INNER PAGES
   ============================================ */
.inner-page { padding: 10rem var(--px) 6rem; max-width: 48rem; margin-inline: auto; }
.inner-page h1 { font-size: 2.5rem; margin-bottom: 2rem; }
.inner-page h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
.inner-page p { color: var(--mfg); line-height: 1.8; margin-bottom: 1rem; font-family: var(--sans); }
.inner-page a { color: var(--accent); text-decoration: underline; }
.inner-page a:hover { color: var(--primary); }
.danke { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 8rem var(--px) 4rem; }
.danke svg { color: var(--accent); margin-bottom: 1.5rem; }
.danke h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.danke p { color: var(--mfg); max-width: 28rem; margin-bottom: 2rem; font-family: var(--sans); }

/* ============================================
   HONORAR
   ============================================ */
.honorar { padding: 8rem var(--px); background: var(--bg); border-top: 1px solid var(--border); }
.honorar-inner { max-width: 90rem; margin-inline: auto; }
.honorar-hdr { max-width: 48rem; margin-bottom: 3rem; }
.honorar h2 { font-size: 2.25rem; line-height: 1.1; margin-bottom: 1.5rem; }
.honorar-hdr p { font-size: 1.0625rem; color: var(--mfg); line-height: 1.75; font-family: var(--sans); }

/* Tabs */
.hon-tabs-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.hon-tab { border: 1px solid var(--border); background: var(--secondary); color: var(--fg); padding: .75rem 1.5rem; font-size: 1rem; font-family: var(--sans); font-weight: 500; transition: background .2s, color .2s, border-color .2s; }
.hon-tab:hover { border-color: var(--primary); }
.hon-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.hon-panel { display: none; }
.hon-panel.active { display: block; }

/* Tables */
.hon-table { background: var(--secondary); border: 1px solid var(--border); }
.hon-table-head { display: flex; align-items: center; justify-content: space-between; background: var(--primary); color: #fff; padding: 1rem 1.5rem; font-weight: 500; letter-spacing: .02em; }
.hon-table-bar { background: var(--primary); color: #fff; padding: .75rem 1.5rem; font-weight: 500; letter-spacing: .02em; }
.hon-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1rem 1.5rem; border-top: 1px solid var(--border); }
.hon-n { color: var(--fg); }
.hon-n.muted { color: var(--mfg); }
.hon-p { color: var(--fg); font-weight: 500; white-space: nowrap; }
.hon-note { font-size: .875rem; color: var(--mfg); margin-top: 1rem; font-family: var(--sans); }
.hon-note-lg { margin-top: 2.5rem; }

/* Cards */
.hon-grid2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.hon-mt8 { margin-top: 2rem; }
.hon-stack-lg > * + * { margin-top: 2rem; }
.hon-card { background: var(--secondary); border: 1px solid var(--border); padding: 2rem; }
.hon-card-dark { background: var(--primary); color: #fff; padding: 2rem; }
.hon-eyebrow { font-size: .8125rem; text-transform: uppercase; letter-spacing: .15em; display: block; margin-bottom: .75rem; }
.hon-card-dark .hon-eyebrow { color: rgba(255,255,255,.7); }
.hon-card .hon-eyebrow { color: var(--mfg); }
.hon-price { font-size: 1.875rem; font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; }
.hon-price-sm { font-size: 1.5rem; font-weight: 700; color: var(--fg); line-height: 1.15; margin-bottom: 1rem; }
.hon-price .u { font-size: 1.0625rem; font-weight: 400; }
.hon-card-dark .hon-price .u { color: rgba(255,255,255,.7); }
.hon-price-sm .u { font-size: 1rem; font-weight: 400; color: var(--mfg); }
.hon-card h4 { font-size: 1.25rem; font-weight: 500; margin-bottom: 1.25rem; }
.hon-card h4.hon-h4-mt { margin-top: 1.5rem; }
.hon-card p { color: var(--mfg); font-family: var(--sans); }
.hon-card-dark p { color: rgba(255,255,255,.8); font-family: var(--sans); }

/* Check list */
.hon-checks { display: flex; flex-direction: column; gap: .75rem; }
.hon-checks li { display: flex; align-items: flex-start; gap: .75rem; font-family: var(--sans); }
.hon-checks li svg { flex-shrink: 0; color: var(--accent); margin-top: .15rem; }
.hon-card-dark .hon-checks li { color: rgba(255,255,255,.8); }
.hon-card .hon-checks li { color: var(--mfg); }

/* Bullets & fine print */
.hon-bullets { list-style: disc; padding-left: 1.25rem; display: flex; flex-direction: column; gap: .5rem; color: var(--mfg); font-family: var(--sans); }
.hon-sub { font-size: .875rem; color: var(--mfg); margin-bottom: 1rem; font-family: var(--sans); }
.hon-sub-strong { font-size: .875rem; margin-top: 1rem; font-family: var(--sans); }
.hon-card .hon-sub-strong { color: var(--fg); }
.hon-stack > * + * { margin-top: 1.25rem; }
.hon-strong { font-weight: 500; margin-bottom: .25rem; }
.hon-card .hon-strong { color: var(--fg); }
.hon-fine { font-size: .875rem; font-family: var(--sans); }

/* ============================================
   RESPONSIVE — SM 640px
   ============================================ */
@media (min-width: 640px) {
  .hero-btns { flex-direction: row; }
  .hero h1 { font-size: 4.5rem; }
}

/* ============================================
   RESPONSIVE — MD 768px
   ============================================ */
@media (min-width: 768px) {
  :root { --px: var(--px-md); }
  .hero { padding-top: 12rem; padding-bottom: 8rem; }
  .about h2, .digital h2, .contact h2 { font-size: 3rem; }
  .services h2 { font-size: 3.75rem; }
  .honorar h2 { font-size: 3.75rem; }
  .team h2 { font-size: 3.75rem; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(3,1fr); }
  .footer-in { flex-direction: row; justify-content: space-between; text-align: left; }
  .cf-wrap { padding: 2.5rem; }
}

/* ============================================
   RESPONSIVE — LG 1024px
   ============================================ */
@media (min-width: 1024px) {
  .hero { flex-direction: row; gap: 6rem; }
  .hero h1 { font-size: 6rem; }
  .hero-img-wrap { aspect-ratio: 3/4; }
  .hero-img-shadow { transform: translate(2rem,2rem); }
  .about-inner { grid-template-columns: 1fr 1fr; }
  .digital-inner { grid-template-columns: 1fr 1fr; }
  .digital-content { order: 2; }
  .digital-img-wrap { order: 1; }
  .contact-inner { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(5,1fr); }
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .hon-grid2 { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE MENU
   ============================================ */
@media (max-width: 767px) {
  .site-nav, .btn-nav { display: none; }
  .menu-toggle { display: flex; }
}
