/* ═══════════════════════════════════════════════════════════
   Greenwich Decor — Shared Stylesheet
   ═══════════════════════════════════════════════════════════ */

:root {
  --white:      #FFFFFF;
  --off-white:  #FFF9F7;
  --blush:      #FDF2F0;
  --rose:       #C4566A;
  --rose-dark:  #A33D52;
  --rose-soft:  rgba(196, 86, 106, 0.08);
  --charcoal:   #242424;
  --mid:        #5C5C5C;
  --light:      #8C8C8C;
  --border:     #EBEBEB;
  --border-dark:#D4D4D4;
  --ease:       all 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ── UTILITIES ── */
.inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.9rem;
}

.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
}
.h2 em { font-style: italic; color: var(--rose); }

.section-sub {
  font-size: 0.95rem;
  color: var(--mid);
  max-width: 520px;
  margin-top: 0.75rem;
  font-weight: 300;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--rose);
  margin: 1.2rem 0 1.6rem;
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--rose);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--rose);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--ease);
}
.btn-primary:hover { background: var(--rose-dark); border-color: var(--rose-dark); }

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--rose);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--rose);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--ease);
}
.btn-ghost:hover { background: var(--rose); color: #fff; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 2rem;
  transition: var(--ease);
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.9rem 2rem;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--ease);
  border-radius: 1px;
}
#navbar.scrolled .hamburger span  { background: var(--charcoal); }
.hamburger.open span              { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* On dark-background service-page hero: hamburger starts dark */
.dark-nav .hamburger span { background: var(--charcoal); }

/* Logo — centered absolutely */
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: color 0.28s ease;
  white-space: nowrap;
}
#navbar.scrolled .nav-logo { color: var(--charcoal); }

/* CTA — top right */
.nav-cta {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  border-radius: 2px;
  transition: var(--ease);
}
.nav-cta:hover                  { background: rgba(255,255,255,0.12); }
#navbar.scrolled .nav-cta       { border-color: var(--rose); color: var(--rose); }
#navbar.scrolled .nav-cta:hover { background: var(--rose); color: #fff; }

/* ── FULL-SCREEN MENU ── */
#fullMenu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 7rem 3rem 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
#fullMenu.open { opacity: 1; pointer-events: all; }

.menu-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.4rem;
}

.menu-service-links {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 2.5rem;
}
.menu-service-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
  transition: color 0.2s, padding-left 0.2s;
}
.menu-service-links a:hover { color: var(--rose); padding-left: 0.4rem; }

.menu-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 2rem;
}

.menu-secondary {
  display: flex;
  gap: 3rem;
  margin-bottom: auto;
}
.menu-secondary a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s, padding-left 0.2s;
}
.menu-secondary a:hover { color: var(--rose); padding-left: 0.4rem; }

.menu-social {
  display: flex;
  gap: 1.8rem;
  margin-top: 3rem;
}
.menu-social a {
  font-size: 0.8rem;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.menu-social a:hover { color: var(--rose); }

/* ── HERO (landing page) ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpeg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 10, 8, 0.84) 0%,
    rgba(15, 10, 8, 0.32) 50%,
    rgba(15, 10, 8, 0.10) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 5.5rem;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.35rem 1rem;
  border-radius: 50px;
}
#hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 500;
  line-height: 1.07;
  color: #fff;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 28px rgba(0,0,0,0.65), 0 1px 6px rgba(0,0,0,0.45);
}
#hero h1 em { font-style: italic; color: #F4C2CA; }

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 430px;
  margin-bottom: 2.4rem;
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  padding: 0;
}
.hero-link:hover { color: #fff; }

/* ── ABOUT ── */
#about {
  background: var(--white);
  padding: 7rem 0;
}
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: 3px;
  aspect-ratio: 4 / 5;
  overflow: visible; /* let badge overflow, radius applied directly to img */
}
.about-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--rose);
  color: #fff;
  padding: 1.4rem 1.2rem;
  border-radius: 3px;
  width: 128px;
  text-align: center;
}
.about-badge .ab-icon {
  display: block;
  font-size: 1.4rem;
  opacity: 0.88;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about-badge .ab-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.55;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

/* ── CONTACT ── */
#contact {
  background: var(--blush);
  padding: 7rem 0;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.contact-lead {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-weight: 300;
}

.channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ch-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--charcoal);
  transition: var(--ease);
}
.ch-btn:hover {
  border-color: var(--rose);
  background: var(--rose-soft);
  transform: translateX(4px);
}
.ch-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ch-wa .ch-icon { background: #E7F9EE; color: #25D366; }
.ch-ig .ch-icon { background: #FDE8F2; color: #E1306C; }
.ch-fb .ch-icon { background: #E8F0FB; color: #1877F2; }
.ch-em .ch-icon { background: var(--rose-soft); color: var(--rose); }

.ch-label { display: flex; flex-direction: column; }
.ch-type  { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--light); }
.ch-val   { font-size: 0.9rem; font-weight: 500; }
.ch-arrow { margin-left: auto; color: var(--border-dark); font-size: 0.72rem; }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.4rem;
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.form-sub {
  font-size: 0.83rem;
  color: var(--light);
  margin-bottom: 1.8rem;
}
.fields { display: flex; flex-direction: column; gap: 1rem; }
.row-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg     { display: flex; flex-direction: column; gap: 0.3rem; }
.fg label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
}
.fg input,
.fg textarea,
.fg select {
  background: var(--off-white);
  border: 1px solid var(--border-dark);
  color: var(--charcoal);
  padding: 0.82rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus { border-color: var(--rose); background: var(--white); }
.fg input::placeholder,
.fg textarea::placeholder { color: rgba(36,36,36,0.28); }
.fg textarea { min-height: 110px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--rose);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.22s;
  margin-top: 0.4rem;
}
.form-submit:hover { background: var(--rose-dark); }
#form-msg {
  display: none;
  font-size: 0.85rem;
  color: var(--rose);
  font-weight: 500;
  margin-top: 0.6rem;
}

/* ── FOOTER ── */
footer {
  background: #1A1A1A;
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.5px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.82); }
.footer-copy {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.28);
}

/* ── LIGHTBOX ── */
.lb-trigger {
  cursor: zoom-in;
  position: relative;
}
.lb-trigger::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
  line-height: 32px;
  text-align: center;
}
.lb-trigger:hover::after { opacity: 1; }

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.93);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}
#lightbox.open { opacity: 1; pointer-events: all; }

#lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  cursor: default;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  display: block;
  width: auto;
}

.lb-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   SERVICE SUB-PAGES
   ═══════════════════════════════════════════════════════════ */

/* Page hero — large photo with overlaid text */
.svc-page-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.svc-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.svc-page-hero.loaded .svc-page-hero-bg { transform: scale(1); }
.svc-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 10, 8, 0.82) 0%,
    rgba(15, 10, 8, 0.25) 55%,
    rgba(15, 10, 8, 0.08) 100%
  );
}
.svc-page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 4.5rem;
  max-width: 800px;
}
.svc-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: 1.4rem;
  transition: color 0.2s;
}
.svc-breadcrumb:hover { color: rgba(255,255,255,0.85); }
.svc-page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 28px rgba(0,0,0,0.5);
}
.svc-page-hero .hero-sub {
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 420px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Sticky sub-navigation */
.svc-subnav {
  position: sticky;
  top: 60px;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.svc-subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-subnav-inner::-webkit-scrollbar { display: none; }
.subnav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light);
  padding: 1.1rem 1.4rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.subnav-link:hover { color: var(--rose); }
.subnav-link.active { color: var(--rose); border-bottom-color: var(--rose); }

/* Subcategory sections */
.svc-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-section:nth-child(even) { background: var(--off-white); }

.svc-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.svc-section.reverse .svc-section-inner {
  direction: rtl;
}
.svc-section.reverse .svc-section-inner > * {
  direction: ltr;
}

/* Photo side */
.svc-section-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
}
.svc-section-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.svc-section-photo img:hover { transform: scale(1.03); }

.svc-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--blush);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--light);
}
.svc-photo-placeholder i   { font-size: 2rem; opacity: 0.3; color: var(--rose); }
.svc-photo-placeholder span {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* Content side */
.svc-section-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.12;
  margin-bottom: 0;
}
.svc-section-content .svc-rule {
  width: 28px;
  height: 1.5px;
  background: var(--rose);
  margin: 1rem 0 1.4rem;
  border-radius: 1px;
}
.svc-section-content .desc {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1.4rem;
  font-weight: 300;
}
.svc-section-content .price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.svc-section-content .note {
  font-size: 0.78rem;
  color: var(--light);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.svc-section-content .note:empty { margin-bottom: 2rem; }

/* Bottom CTA on service pages */
.svc-page-cta {
  background: var(--blush);
  padding: 5.5rem 2rem;
  text-align: center;
}
.svc-page-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.svc-page-cta p {
  font-size: 0.93rem;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-wrap        { gap: 4rem; }
  .svc-section-inner { gap: 4rem; }
}

@media (max-width: 900px) {
  .about-wrap   { grid-template-columns: 1fr; gap: 3rem; }
  .about-img    { max-width: 480px; }
  .about-badge  { right: 0; bottom: -1rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }

  .svc-section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-section.reverse .svc-section-inner { direction: ltr; }
  .svc-section-photo { aspect-ratio: 4 / 3; }
}

@media (max-width: 680px) {
  .svc-page-hero { height: 60vh; min-height: 400px; }
  .svc-page-hero-content { padding: 0 1.5rem 3.5rem; }
}

@media (max-width: 560px) {
  #about, #contact { padding: 4.5rem 0; }
  .row-2       { grid-template-columns: 1fr; }
  #fullMenu    { padding: 6rem 1.8rem 2rem; }
  .menu-secondary { gap: 1.5rem; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .svc-section { padding: 4rem 0; }
  .subnav-link { padding: 1rem; font-size: 0.65rem; letter-spacing: 1px; }
}
