@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --clr-dark: #0f0f0f;
  --clr-dark-2: #1a1a1a;
  --clr-dark-3: #252525;
  --clr-light: #f5f3ef;
  --clr-light-2: #ede9e3;
  --clr-light-3: #e0dbd2;
  --clr-accent: #c8a96e;
  --clr-accent-dark: #a8893e;
  --clr-accent-light: #e8c98e;
  --clr-text-dark: #1a1a1a;
  --clr-text-mid: #4a4540;
  --clr-text-light: #f0ece6;
  --clr-text-muted-light: #c8c0b4;
  --clr-text-muted-dark: #7a7068;

  --shadow-sm: 0 2px 8px rgba(15,15,15,0.12), 0 1px 3px rgba(15,15,15,0.08);
  --shadow-md: 0 8px 24px rgba(15,15,15,0.15), 0 3px 8px rgba(15,15,15,0.10);
  --shadow-lg: 0 20px 60px rgba(15,15,15,0.20), 0 8px 20px rgba(15,15,15,0.12);
  --shadow-accent: 0 8px 32px rgba(200,169,110,0.25), 0 2px 8px rgba(200,169,110,0.15);
  --shadow-glow: 0 0 20px rgba(200,169,110,0.4), 0 0 40px rgba(200,169,110,0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--clr-light);
  color: var(--clr-text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sec {
  position: relative;
}

.sec-light {
  background-color: var(--clr-light);
  color: var(--clr-text-dark);
}

.sec-dark {
  background-color: var(--clr-dark);
  color: var(--clr-text-light);
}

.sec-label {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1rem;
}

.sec-label-light {
  color: var(--clr-accent-light);
}

.sec-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-text-dark);
  margin-bottom: 1.5rem;
}

.sec-title-light {
  color: var(--clr-text-light);
}

.sec-hd {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sec-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--clr-text-mid);
  margin-bottom: 1rem;
}

.sec-body-light {
  color: var(--clr-text-muted-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-dark);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,169,110,0.35), 0 4px 12px rgba(200,169,110,0.2);
}

.btn-dark {
  background: var(--clr-dark);
  color: var(--clr-text-light);
  border-color: var(--clr-dark);
}
.btn-dark:hover {
  background: var(--clr-dark-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--clr-text-light);
  border-color: rgba(240,236,230,0.5);
}
.btn-outline-light:hover {
  background: rgba(240,236,230,0.1);
  border-color: var(--clr-text-light);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--clr-text-dark);
  border-color: var(--clr-dark);
}
.btn-outline-dark:hover {
  background: var(--clr-dark);
  color: var(--clr-text-light);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--clr-accent);
  color: var(--clr-dark);
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}


.cursor-trail {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clr-accent);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease, opacity 0.3s ease;
  box-shadow: var(--shadow-glow);
  mix-blend-mode: screen;
}


.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  transition: var(--transition);
}

.hdr.hdr-scrolled .hdr-inner {
  padding: 0.8rem 2rem;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.hdr-logo-img {
  width: 32px;
  height: 32px;
}

.hdr-logo-txt {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text-light);
  transition: var(--transition);
}

.hdr.hdr-on-light .hdr-logo-txt {
  color: var(--clr-text-dark);
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hdr-nav-lnk {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: rgba(240,236,230,0.8);
  transition: var(--transition);
  position: relative;
}

.hdr-nav-lnk::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: var(--transition);
}

.hdr-nav-lnk:hover::after,
.hdr-nav-lnk.active::after {
  width: 100%;
}

.hdr-nav-lnk:hover,
.hdr-nav-lnk.active {
  color: var(--clr-accent-light);
}

.hdr.hdr-on-light .hdr-nav-lnk {
  color: var(--clr-text-mid);
}

.hdr.hdr-on-light .hdr-nav-lnk:hover,
.hdr.hdr-on-light .hdr-nav-lnk.active {
  color: var(--clr-accent-dark);
}

.hdr-cta {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--clr-accent);
  color: var(--clr-dark);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-accent);
}

.hdr-cta:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.3);
}

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hdr-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text-light);
  border-radius: 2px;
  transition: var(--transition);
}

.hdr.hdr-on-light .hdr-burger span {
  background: var(--clr-text-dark);
}


.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.mob-menu.mob-open {
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  pointer-events: all;
}

.mob-menu-inner {
  position: absolute;
  inset: 0;
  background: var(--clr-dark-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 2.5rem;
}

.mob-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--clr-text-light);
  font-size: 1.5rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mob-menu-close:hover {
  color: var(--clr-accent);
  transform: rotate(90deg);
}

.mob-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mob-nav-lnk {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--clr-text-light);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-20px);
}

.mob-menu.mob-open .mob-nav-lnk {
  opacity: 1;
  transform: translateX(0);
}

.mob-menu.mob-open .mob-nav-lnk:nth-child(1) { transition-delay: 0.3s; }
.mob-menu.mob-open .mob-nav-lnk:nth-child(2) { transition-delay: 0.36s; }
.mob-menu.mob-open .mob-nav-lnk:nth-child(3) { transition-delay: 0.42s; }
.mob-menu.mob-open .mob-nav-lnk:nth-child(4) { transition-delay: 0.48s; }
.mob-menu.mob-open .mob-nav-lnk:nth-child(5) { transition-delay: 0.54s; }

.mob-nav-lnk:hover {
  color: var(--clr-accent);
  transform: translateX(8px);
}

.mob-cta {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  background: var(--clr-accent);
  color: var(--clr-dark);
  text-decoration: none;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
}

.mob-menu.mob-open .mob-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.mob-cta:hover {
  background: var(--clr-accent-dark);
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.75) 100%);
}

.hero-mid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-mid-shape {
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 55%;
  height: 80%;
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: var(--radius-xl);
  transform: rotate(-15deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  padding-top: 120px;
}

.hero-left {
  flex: 0 0 58%;
}

.hero-right {
  flex: 1;
  padding-bottom: 0.5rem;
}

.hero-tag {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--clr-text-light);
  margin-bottom: 0;
}

.hero-h1 em {
  font-style: normal;
  color: var(--clr-accent);
  display: block;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(240,236,230,0.75);
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}


.sec-gradient-fade {
  height: 120px;
  background: linear-gradient(to bottom, var(--clr-light), var(--clr-dark));
  pointer-events: none;
}


.sec-intro {
  padding: var(--space-xl) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-txt .sec-title {
  margin-bottom: 1.5rem;
}

.intro-img-wrap {
  position: relative;
}

.intro-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.intro-img-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--clr-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}


.sec-services {
  padding: var(--space-xl) 0;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.crd {
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.crd-svc {
  background: var(--clr-dark-3);
  border: 1px solid rgba(200,169,110,0.1);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.crd-svc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.crd-svc:hover {
  transform: translateY(-6px);
  border-color: rgba(200,169,110,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,169,110,0.15);
}

.crd-svc:hover::before {
  opacity: 1;
}

.crd-ico {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.crd-svc:hover .crd-ico {
  background: rgba(200,169,110,0.2);
  transform: scale(1.05);
}

.crd-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text-light);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.crd-txt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--clr-text-muted-light);
}

.svc-cta {
  text-align: center;
}


.sec-process {
  padding: var(--space-xl) 0;
}

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

.proc-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--clr-accent-dark), var(--clr-accent), var(--clr-accent-dark));
  opacity: 0.3;
}

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

.proc-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-dark);
  border: 2px solid var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.proc-step:hover .proc-num {
  background: var(--clr-accent);
  color: var(--clr-dark);
  box-shadow: var(--shadow-accent);
}

.proc-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.proc-txt {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--clr-text-muted-dark);
}


.sec-visual {
  padding: 0;
  overflow: hidden;
}

.vis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.vis-img-wrap {
  position: relative;
  overflow: hidden;
}

.vis-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vis-content {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.sec-season {
  padding: var(--space-xl) 0;
}

.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.season-card {
  background: var(--clr-light-2);
  border: 1px solid var(--clr-light-3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.season-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-accent);
}

.season-ico {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
}

.season-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 0.75rem;
}

.season-txt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--clr-text-mid);
}


.sec-cta-banner {
  background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark-3) 40%, #2a2318 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.sec-cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-banner-h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--clr-text-light);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-banner-sub {
  font-size: 1rem;
  color: var(--clr-text-muted-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-banner-btn {
  font-size: 0.8rem;
}


.sec-gallery {
  padding: var(--space-xl) 0;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gal-item-tall {
  grid-row: span 2;
}

.gal-item-wide {
  grid-column: span 2;
}

.gal-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gal-item-tall .gal-img {
  min-height: 460px;
}

.gal-item-wide .gal-img {
  min-height: 220px;
}

.gal-item:hover .gal-img {
  transform: scale(1.06);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-overlay span {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--clr-text-light);
  letter-spacing: 0.08em;
}


.ftr {
  background: var(--clr-dark-2);
  color: var(--clr-text-muted-light);
  padding: var(--space-lg) 0 0;
}

.ftr-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-lg);
  border-bottom: 1px solid rgba(200,169,110,0.1);
}

.ftr-logo {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  display: block;
}

.ftr-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--clr-text-muted-light);
}

.ftr-col-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
}

.ftr-nav-col,
.ftr-contact-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ftr-lnk {
  font-size: 0.875rem;
  color: var(--clr-text-muted-light);
  text-decoration: none;
  padding: 0.3rem 0;
  transition: var(--transition);
  display: block;
}

.ftr-lnk:hover {
  color: var(--clr-accent-light);
  transform: translateX(4px);
}

.ftr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--clr-text-muted-light);
  margin-bottom: 0.75rem;
}

.ftr-contact-item i {
  color: var(--clr-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.ftr-contact-item a {
  color: var(--clr-text-muted-light);
  text-decoration: none;
  transition: var(--transition);
}

.ftr-contact-item a:hover {
  color: var(--clr-accent-light);
}

.ftr-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem var(--space-md);
  display: flex;
  justify-content: center;
}

.ftr-copy {
  font-size: 0.8rem;
  color: rgba(200,192,180,0.5);
}


.pg-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.pg-hero-sm {
  min-height: 40vh;
}

.pg-hero-bg {
  position: absolute;
  inset: 0;
}

.pg-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-hero-overlay {
  position: absolute;
  inset: 0;
}

.pg-hero-overlay-solid {
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 100%);
}

.pg-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.pg-hero-h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--clr-text-light);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.pg-hero-sub {
  font-size: 1rem;
  color: rgba(240,236,230,0.7);
  max-width: 600px;
  line-height: 1.7;
}


.team-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl) 0;
}

.team-intro-p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--clr-text-mid);
  margin-bottom: 1.25rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 0 var(--space-xl);
}

.team-crd {
  background: var(--clr-dark-3);
  border: 1px solid rgba(200,169,110,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.team-crd:hover {
  transform: translateY(-6px);
  border-color: rgba(200,169,110,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.team-img-wrap {
  height: 260px;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-crd:hover .team-img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.75rem;
}

.team-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text-light);
  margin-bottom: 0.35rem;
}

.team-role {
  display: block;
  font-size: 0.75rem;
  color: var(--clr-accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--clr-text-muted-light);
}

.vals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 0 0 var(--space-xl);
}

.val-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--clr-light-2);
  border: 1px solid var(--clr-light-3);
  transition: var(--transition);
}

.val-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-accent);
}

.val-ico {
  font-size: 1.75rem;
  color: var(--clr-accent-dark);
  margin-bottom: 1rem;
}

.val-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 0.75rem;
}

.val-txt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--clr-text-mid);
}


.sec-services-detail {
  padding: var(--space-xl) 0;
}

.svc-detail-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--clr-light-3);
  align-items: start;
}

.svc-detail-item:last-child {
  border-bottom: none;
}

.svc-detail-item-rev {
  background: var(--clr-light-2);
  margin: 0 calc(-1 * var(--space-md));
  padding: 3rem var(--space-md);
  border-radius: var(--radius-lg);
  border-bottom: none;
}

.svc-detail-ico {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
  box-shadow: var(--shadow-md);
}

.svc-detail-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.svc-detail-txt {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--clr-text-mid);
  margin-bottom: 1rem;
}

.svc-detail-list {
  list-style: none;
  margin-top: 1rem;
}

.svc-detail-list li {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  line-height: 1.5;
}

.svc-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
}

.mat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-bottom: var(--space-xl);
}

.mat-crd {
  background: var(--clr-dark-3);
  border: 1px solid rgba(200,169,110,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.mat-crd:hover {
  border-color: rgba(200,169,110,0.3);
  transform: translateY(-4px);
}

.mat-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 0.75rem;
}

.mat-txt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--clr-text-muted-light);
}


.season-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: var(--space-xl) 0;
}

.season-info-img-wrap {
  position: relative;
}

.season-info-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.season-info-deco {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 50%;
  height: 50%;
  border: 2px solid var(--clr-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.25;
}

.scope-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: var(--space-xl);
}

.scope-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: var(--clr-dark-3);
  border: 1px solid rgba(200,169,110,0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.scope-item:hover {
  border-color: rgba(200,169,110,0.3);
  transform: translateX(6px);
}

.scope-ico {
  color: var(--clr-accent);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.scope-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-light);
  margin-bottom: 0.4rem;
}

.scope-txt {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--clr-text-muted-light);
}

.yearround-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 0 var(--space-xl);
}

.yearround-icons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.season-icon-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem;
  background: var(--clr-light-2);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--clr-accent);
  transition: var(--transition);
}

.season-icon-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.season-icon-item i {
  font-size: 1.3rem;
  color: var(--clr-accent-dark);
  margin-bottom: 0.35rem;
}

.season-icon-item span {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-text-dark);
}

.season-icon-item p {
  font-size: 0.85rem;
  color: var(--clr-text-mid);
  line-height: 1.5;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: var(--space-xl) 0;
  align-items: start;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-detail-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.contact-detail-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted-dark);
  margin-bottom: 0.3rem;
}

.contact-detail-val {
  font-size: 0.95rem;
  color: var(--clr-text-dark);
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.5;
  display: block;
}

.contact-detail-val:hover {
  color: var(--clr-accent-dark);
}

.hours-box {
  background: var(--clr-light-2);
  border: 1px solid var(--clr-light-3);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 2rem;
}

.hours-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours-ttl i {
  color: var(--clr-accent-dark);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1rem;
}

.hours-day {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
}

.hours-time {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text-dark);
}

.hours-note {
  font-size: 0.8rem;
  color: var(--clr-text-muted-dark);
  line-height: 1.6;
  font-style: italic;
  padding-top: 0.75rem;
  border-top: 1px solid var(--clr-light-3);
}


.frm-card {
  background: var(--clr-light);
  border: 1px solid var(--clr-light-3);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.frm-steps-ind {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.75rem;
}

.frm-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clr-light-3);
  transition: var(--transition);
}

.frm-step-dot-active {
  background: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.2);
}

.frm-step-line {
  flex: 1;
  height: 2px;
  background: var(--clr-light-3);
  margin: 0 0.5rem;
}

.frm-step-label {
  font-size: 0.75rem;
  color: var(--clr-text-muted-dark);
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.frm-step {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
}

.frm-step-hidden {
  display: none;
}

.frm-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.frm-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  font-family: 'Unbounded', sans-serif;
  letter-spacing: 0.03em;
}

.frm-inp,
.frm-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--clr-light-3);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--clr-text-dark);
  background: var(--clr-light);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.frm-inp:focus,
.frm-textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.15);
}

.frm-inp::placeholder,
.frm-textarea::placeholder {
  color: var(--clr-text-muted-dark);
}

.frm-textarea {
  min-height: 140px;
}

.frm-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--clr-light-2);
  border-radius: var(--radius-md);
}

.frm-chk {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clr-accent);
  cursor: pointer;
}

.frm-privacy-lbl {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--clr-text-mid);
  cursor: pointer;
}

.frm-privacy-lnk {
  color: var(--clr-accent-dark);
  text-decoration: underline;
}

.frm-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.frm-next,
.frm-submit {
  align-self: flex-start;
}


.sec-map {
  padding: var(--space-lg) 0;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,169,110,0.15);
  margin-top: 2rem;
}

.map-iframe {
  display: block;
  border-radius: var(--radius-lg);
}


.thanks-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.thanks-main {
  flex: 1;
  background: linear-gradient(135deg, var(--clr-dark) 0%, #1c1508 50%, var(--clr-dark-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thanks-main::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%);
}

.thanks-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.thanks-ico {
  font-size: 3rem;
  color: var(--clr-accent);
  margin-bottom: 1.5rem;
  animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { text-shadow: 0 0 20px rgba(200,169,110,0.4); }
  50% { text-shadow: 0 0 40px rgba(200,169,110,0.7), 0 0 80px rgba(200,169,110,0.3); }
}

.thanks-h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-text-light);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.thanks-sub {
  font-size: 1rem;
  color: rgba(240,236,230,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.thanks-btn {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  font-size: 0.8rem;
  padding: 1rem 2rem;
}

.thanks-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}


.legal-sec {
  padding: var(--space-xl) 0;
}

.legal-container {
  max-width: 860px;
}

.legal-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clr-text-mid);
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--clr-light-3);
}

.legal-def-box {
  background: var(--clr-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  border-left: 4px solid var(--clr-accent);
}

.legal-def-box-terms {
  border-left-color: var(--clr-accent-dark);
}

.legal-def-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
}

.legal-def-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1.5rem;
  align-items: start;
}

.legal-def-list dt {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-accent-light);
  padding-top: 0.1rem;
  white-space: nowrap;
}

.legal-def-list dd {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--clr-text-muted-light);
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--clr-light-3);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--clr-accent);
  display: inline-block;
}

.legal-h2-letter {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 1.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--clr-dark);
  color: var(--clr-accent);
  border-radius: var(--radius-md);
  display: inline-block;
}

.legal-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--clr-text-mid);
  margin-bottom: 1rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--clr-accent-dark);
  text-decoration: underline;
}

.legal-term {
  color: var(--clr-accent-dark);
  font-weight: 600;
}

.legal-clause {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: var(--clr-light-2);
  border-radius: var(--radius-md);
  align-items: start;
}

.legal-clause-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-accent-dark);
  padding-top: 0.1rem;
}

.legal-clause p {
  margin-bottom: 0;
}


.legal-intro-p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--clr-text-mid);
  margin-bottom: 2.5rem;
}

.cookies-tech-box {
  background: var(--clr-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
}

.cookies-tech-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 1rem;
}

.cookies-tech-box p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--clr-text-muted-light);
  margin-bottom: 0.75rem;
}

.cookies-section {
  margin-bottom: 3rem;
}

.cookies-h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--clr-accent);
}

.cookies-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--clr-text-mid);
  margin-bottom: 1rem;
}

.cookies-section a {
  color: var(--clr-accent-dark);
}

.cookies-category {
  background: var(--clr-light-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--clr-light-3);
}

.cookies-cat-hd {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cookies-cat-badge {
  font-size: 0.65rem;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.cookies-cat-required {
  background: rgba(15,15,15,0.1);
  color: var(--clr-text-dark);
}

.cookies-cat-analytics {
  background: rgba(200,169,110,0.15);
  color: var(--clr-accent-dark);
}

.cookies-cat-marketing {
  background: rgba(100,100,100,0.1);
  color: var(--clr-text-mid);
}

.cookies-cat-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text-dark);
}

.cookies-category p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--clr-text-mid);
  margin-bottom: 0.75rem;
}

.cookies-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: var(--radius-md);
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cookies-table th {
  background: var(--clr-dark);
  color: var(--clr-accent);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
}

.cookies-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--clr-light-3);
  color: var(--clr-text-mid);
  vertical-align: top;
}

.cookies-table td code {
  background: var(--clr-dark);
  color: var(--clr-accent-light);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.cookies-manage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cookies-manage-item {
  background: var(--clr-light-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--clr-light-3);
}

.cookies-manage-ttl {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookies-manage-ttl i {
  color: var(--clr-accent-dark);
}

.cookies-manage-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--clr-text-mid);
  margin-bottom: 0.75rem;
}

.cookies-browser-list {
  list-style: none;
  margin: 0.5rem 0;
}

.cookies-browser-list li {
  font-size: 0.8rem;
  color: var(--clr-text-mid);
  padding: 0.3rem 0 0.3rem 1rem;
  position: relative;
}

.cookies-browser-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--clr-accent-dark);
}

.cookies-note {
  font-size: 0.8rem;
  color: var(--clr-text-muted-dark);
  font-style: italic;
  margin-top: 0.75rem;
}


.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 10000;
  width: 100%;
  max-width: 360px;
  background: var(--clr-dark-2);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 8px 20px rgba(0,0,0,0.25), 0 0 0 1px rgba(200,169,110,0.08);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.cookie-consent.cc-visible {
  transform: translateY(0);
  opacity: 1;
}

.cc-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-text-light);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cc-title i {
  color: var(--clr-accent);
}

.cc-txt {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--clr-text-muted-light);
  margin-bottom: 1.25rem;
}

.cc-txt a {
  color: var(--clr-accent);
  text-decoration: underline;
}

.cc-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cc-btn-accept {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--clr-accent);
  color: var(--clr-dark);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.cc-btn-accept:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-1px);
}

.cc-btn-row {
  display: flex;
  gap: 0.5rem;
}

.cc-btn-reject,
.cc-btn-customize {
  flex: 1;
  padding: 0.6rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: var(--radius-md);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--clr-text-muted-light);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
}

.cc-btn-reject:hover,
.cc-btn-customize:hover {
  border-color: rgba(200,169,110,0.5);
  color: var(--clr-text-light);
}

.cc-expand {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200,169,110,0.1);
  display: none;
}

.cc-expand.cc-expand-open {
  display: block;
}

.cc-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(200,169,110,0.08);
}

.cc-category:last-child {
  border-bottom: none;
}

.cc-cat-label {
  font-size: 0.75rem;
  color: var(--clr-text-muted-light);
}

.cc-cat-label strong {
  display: block;
  color: var(--clr-text-light);
  font-size: 0.75rem;
  margin-bottom: 0.1rem;
}

.cc-toggle {
  position: relative;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

.cc-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cc-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(200,192,180,0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.cc-toggle-slider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  top: 3px;
  background: var(--clr-text-muted-light);
  border-radius: 50%;
  transition: var(--transition);
}

.cc-toggle input:checked + .cc-toggle-slider {
  background: rgba(200,169,110,0.4);
}

.cc-toggle input:checked + .cc-toggle-slider::before {
  transform: translateX(16px);
  background: var(--clr-accent);
}

.cc-toggle input:disabled + .cc-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cc-save-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.65rem;
  background: var(--clr-accent);
  color: var(--clr-dark);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.cc-save-btn:hover {
  background: var(--clr-accent-dark);
}


@media (max-width: 1024px) {
  .hdr-nav { display: none; }
  .hdr-cta { display: none; }
  .hdr-burger { display: flex; }

  .hero-content { flex-direction: column; gap: 2rem; }
  .hero-left { flex: none; width: 100%; }
  .hero-right { width: 100%; }

  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .proc-grid::before { display: none; }
  .vis-grid { grid-template-columns: 1fr; }
  .vis-img-wrap { height: 350px; }
  .vis-content { padding: var(--space-lg) var(--space-md); }
  .season-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .vals-grid { grid-template-columns: repeat(2, 1fr); }
  .mat-grid { grid-template-columns: repeat(2, 1fr); }
  .season-info-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .yearround-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ftr-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item-tall { grid-row: span 1; }
  .gal-item-wide { grid-column: span 1; }
  .cookies-manage-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .hero { padding-bottom: var(--space-lg); }
  .hero-h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .svc-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr; }
  .mat-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .gal-item-tall { grid-row: span 1; }
  .gal-item-wide { grid-column: span 1; }
  .ftr-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .legal-def-list { grid-template-columns: 1fr; }
  .legal-clause { grid-template-columns: 1fr; }
  .legal-clause-num { font-size: 0.8rem; }
  .svc-detail-item { grid-template-columns: 1fr; gap: 1rem; }
  .svc-detail-item-rev { margin: 0; }
  .frm-btns { flex-direction: column; }
  .frm-btns .btn { width: 100%; justify-content: center; }
  .cookie-consent { left: 1rem; right: 1rem; max-width: none; bottom: 1rem; }
  .hdr-inner { padding: 1rem 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .pg-hero-h1 { font-size: 1.8rem; }
  .sec-title { font-size: 1.4rem; }
  .hero-h1 { font-size: 2rem; }
  .frm-card { padding: 1.5rem; }
  .hours-grid { grid-template-columns: 1fr; }
  .hours-time { font-weight: 600; color: var(--clr-accent-dark); }
}