/* ===========================
   VORENQENAI — MAIN STYLESHEET
   Wabi-Sabi Digital Concept
   =========================== */

:root {
  --clr-bg: #f7f4ef;
  --clr-bg-alt: #ede8e0;
  --clr-bg-dark: #2c2419;
  --clr-bg-mid: #3d3228;
  --clr-text: #2c2419;
  --clr-text-soft: #5a4e3e;
  --clr-text-muted: #8a7a68;
  --clr-text-inv: #f7f4ef;
  --clr-pri: #c4622d;
  --clr-pri-dark: #a34e22;
  --clr-pri-light: #e8a882;
  --clr-sec: #6b8f71;
  --clr-sec-dark: #4e6e54;
  --clr-acc: #d4a853;
  --clr-acc-light: #f0d49a;
  --clr-border: #d8cfc4;
  --clr-border-dark: #b8a898;
  --clr-glass: rgba(247, 244, 239, 0.72);
  --clr-glass-dark: rgba(44, 36, 25, 0.55);

  --rad-sm: 8px;
  --rad-md: 16px;
  --rad-lg: 24px;
  --rad-xl: 36px;
  --rad-full: 9999px;

  --shadow-sm:
    0 1px 3px rgba(44, 36, 25, 0.08), 0 1px 2px rgba(44, 36, 25, 0.06);
  --shadow-md:
    0 4px 12px rgba(44, 36, 25, 0.1), 0 2px 6px rgba(44, 36, 25, 0.07);
  --shadow-lg:
    0 10px 30px rgba(44, 36, 25, 0.12), 0 4px 12px rgba(44, 36, 25, 0.08),
    0 1px 3px rgba(44, 36, 25, 0.06);
  --shadow-xl:
    0 20px 50px rgba(44, 36, 25, 0.15), 0 8px 20px rgba(44, 36, 25, 0.1),
    0 2px 6px rgba(44, 36, 25, 0.07);

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

  --font-head: "Merriweather", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;

  --nav-h: 76px;
  --trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--clr-text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

p {
  margin-bottom: 1.2em;
}
p:last-child {
  margin-bottom: 0;
}

.cnt {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.sec {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.sec-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-pri);
  background: rgba(196, 98, 45, 0.09);
  padding: 0.35em 0.9em;
  border-radius: var(--rad-full);
  margin-bottom: 1.2rem;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 1.4rem;
  line-height: 1.2;
}

.sec-title.sm {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

.sec-body {
  font-size: 1.05rem;
  color: var(--clr-text-soft);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.sec-body.large {
  font-size: 1.2rem;
  line-height: 1.9;
}

.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-pri);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85em 2em;
  border-radius: var(--rad-full);
  transition: var(--trans);
  box-shadow:
    var(--shadow-md),
    0 0 0 0 rgba(196, 98, 45, 0);
  position: relative;
  overflow: hidden;
}

.btn-pri::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-pri:hover {
  background: var(--clr-pri-dark);
  transform: translateY(-2px);
  box-shadow:
    var(--shadow-lg),
    0 0 0 4px rgba(196, 98, 45, 0.15);
  color: #fff;
}

.btn-pri:hover::before {
  opacity: 1;
}
.btn-pri:active {
  transform: translateY(0);
}

.btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85em 2em;
  border-radius: var(--rad-full);
  border: 2px solid rgba(255, 255, 255, 0.65);
  transition: var(--trans);
}

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

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-pri);
  position: relative;
  padding-bottom: 2px;
}

.btn-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--clr-pri);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.btn-line:hover::after {
  transform: scaleX(1);
}
.btn-line i {
  transition: transform 0.25s;
}
.btn-line:hover i {
  transform: translateX(4px);
}

/* ===========================
   HEADER & NAV
   =========================== */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.hdr.hdr-scrolled {
  background: var(--clr-bg);
  box-shadow: var(--shadow-md);
}

.hdr-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hdr-logo {
  flex-shrink: 0;
}
.hdr-logo-img {
  height: 40px;
  width: auto;
}

.hdr-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.hdr-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text);
  padding: 0.5em 0.85em;
  border-radius: var(--rad-sm);
  transition: var(--trans);
  position: relative;
}

.hdr-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0.85em;
  right: 0.85em;
  height: 2px;
  background: var(--clr-pri);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.hdr-link:hover {
  color: var(--clr-pri);
}
.hdr-link:hover::after,
.hdr-link.active::after {
  transform: scaleX(1);
}
.hdr-link.active {
  color: var(--clr-pri);
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

.hdr-search-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--rad-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text);
  transition: var(--trans);
  font-size: 0.9rem;
}

.hdr-search-btn:hover {
  background: var(--clr-bg-alt);
  color: var(--clr-pri);
}

.hdr-cta {
  background: var(--clr-pri);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6em 1.4em;
  border-radius: var(--rad-full);
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}

.hdr-cta:hover {
  background: var(--clr-pri-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--rad-sm);
  transition: var(--trans);
}

.hdr-burger:hover {
  background: var(--clr-bg-alt);
}

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

.hdr.hdr-light .hdr-link {
  color: rgba(247, 244, 239, 0.9);
}
.hdr.hdr-light .hdr-link:hover {
  color: #fff;
}
.hdr.hdr-light .hdr-link.active {
  color: #fff;
}
.hdr.hdr-light .hdr-link::after {
  background: #fff;
}
.hdr.hdr-light .hdr-search-btn {
  color: rgba(247, 244, 239, 0.9);
}
.hdr.hdr-light .hdr-search-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.hdr.hdr-light .hdr-burger span {
  background: #fff;
}
.hdr.hdr-light .hdr-logo-img {
  filter: brightness(10);
}

/* ===========================
   SEARCH OVERLAY
   =========================== */
.srch-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(44, 36, 25, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.srch-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.srch-inner {
  width: min(600px, 90vw);
  position: relative;
}

.srch-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(247, 244, 239, 0.5);
  color: var(--clr-text-inv);
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  padding: 0.5em 3rem 0.5em 0;
  outline: none;
  transition: border-color 0.25s;
}

.srch-input::placeholder {
  color: rgba(247, 244, 239, 0.4);
}
.srch-input:focus {
  border-bottom-color: var(--clr-pri-light);
}

.srch-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(247, 244, 239, 0.7);
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.srch-close:hover {
  color: #fff;
}

/* ===========================
   MOBILE MENU — CURTAIN DROP
   =========================== */
.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 940;
  background: var(--clr-bg-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mob-menu.mob-open {
  transform: translateY(0);
}

.mob-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 320px;
}

.mob-item {
  width: 100%;
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.mob-menu.mob-open .mob-item {
  opacity: 1;
  transform: translateY(0);
}
.mob-menu.mob-open .mob-item:nth-child(1) {
  transition-delay: 0.15s;
}
.mob-menu.mob-open .mob-item:nth-child(2) {
  transition-delay: 0.22s;
}
.mob-menu.mob-open .mob-item:nth-child(3) {
  transition-delay: 0.29s;
}
.mob-menu.mob-open .mob-item:nth-child(4) {
  transition-delay: 0.36s;
}
.mob-menu.mob-open .mob-item:nth-child(5) {
  transition-delay: 0.43s;
}

.mob-item a {
  display: block;
  text-align: center;
  color: var(--clr-text-inv);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.75em 1em;
  border-radius: var(--rad-md);
  transition: var(--trans);
}

.mob-item a:hover {
  background: rgba(247, 244, 239, 0.08);
  color: var(--clr-acc);
}

.mob-close {
  margin-top: 3rem;
  color: rgba(247, 244, 239, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75em 1.5em;
  border: 1px solid rgba(247, 244, 239, 0.2);
  border-radius: var(--rad-full);
  transition: var(--trans);
}

.mob-close:hover {
  color: #fff;
  border-color: rgba(247, 244, 239, 0.5);
  background: rgba(247, 244, 239, 0.05);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(44, 36, 25, 0.88) 0%,
    rgba(44, 36, 25, 0.82) 38%,
    rgba(44, 36, 25, 0.45) 60%,
    rgba(44, 36, 25, 0.1) 100%
  );
  clip-path: polygon(0 0, 65% 0, 52% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 2rem 5rem;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-acc);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 580px;
}

.hero-title em {
  font-style: italic;
  color: var(--clr-acc);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(247, 244, 239, 0.85);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.pg-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}

.pg-hero-short {
  min-height: 44vh;
}

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

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

.pg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 36, 25, 0.85) 0%,
    rgba(44, 36, 25, 0.55) 50%,
    rgba(44, 36, 25, 0.25) 100%
  );
  z-index: 1;
}

.pg-hero-cnt {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
  width: 100%;
}

.pg-hero-cnt-center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pg-hero .hero-title {
  max-width: none;
}

/* ===========================
   INTRO SECTION
   =========================== */
.sec-intro {
  background: var(--clr-bg);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.intro-mark {
  width: 48px;
  height: 4px;
  background: var(--clr-pri);
  border-radius: var(--rad-full);
  margin-bottom: 2rem;
  position: relative;
}

.intro-mark::after {
  content: "";
  position: absolute;
  left: 56px;
  top: 0;
  width: 12px;
  height: 4px;
  background: var(--clr-acc);
  border-radius: var(--rad-full);
}

/* ===========================
   ACCORDION
   =========================== */
.sec-acc {
  background: var(--clr-bg-alt);
  position: relative;
}

.sec-acc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--clr-pri),
    var(--clr-acc),
    var(--clr-sec)
  );
}

.acc {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.acc-item {
  background: var(--clr-bg);
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.acc-item:hover {
  box-shadow: var(--shadow-md);
}

.acc-hd {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  text-align: left;
  background: transparent;
  transition: background 0.2s;
}

.acc-hd:hover {
  background: rgba(196, 98, 45, 0.04);
}

.acc-ico {
  width: 42px;
  height: 42px;
  border-radius: var(--rad-md);
  background: rgba(196, 98, 45, 0.1);
  color: var(--clr-pri);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--trans);
}

.acc-item.acc-open .acc-ico {
  background: var(--clr-pri);
  color: #fff;
}

.acc-label {
  flex: 1;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
}

.acc-arr {
  color: var(--clr-text-muted);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.acc-item.acc-open .acc-arr {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-body p {
  padding: 0 1.5rem;
  color: var(--clr-text-soft);
  font-size: 0.97rem;
  line-height: 1.75;
}

.acc-body p:first-child {
  padding-top: 0.5rem;
}
.acc-body p:last-child {
  padding-bottom: 1.5rem;
}

/* ===========================
   SPLIT SECTION
   =========================== */
.sec-split {
  background: var(--clr-bg);
  padding: 0;
  overflow: hidden;
}

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

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

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

.split-badge {
  position: absolute;
  bottom: 2rem;
  right: -1px;
  background: var(--clr-bg);
  padding: 0.75rem 1.25rem;
  border-radius: var(--rad-lg) 0 0 var(--rad-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-sec-dark);
  box-shadow: var(--shadow-md);
}

.split-badge i {
  color: var(--clr-sec);
}

.split-txt {
  padding: 5rem 4rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--clr-bg-alt);
}

/* ===========================
   BEFORE/AFTER COMPARE
   =========================== */
.sec-compare {
  background: var(--clr-bg-dark);
  color: var(--clr-text-inv);
}

.sec-compare .sec-title {
  color: var(--clr-text-inv);
}
.sec-compare .sec-body {
  color: rgba(247, 244, 239, 0.75);
}
.sec-compare .sec-tag {
  background: rgba(212, 168, 83, 0.15);
  color: var(--clr-acc);
}

.compare-wrap {
  margin-top: 2.5rem;
}

.compare-slider {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  height: 420px;
  border-radius: var(--rad-xl);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow-xl);
}

.compare-before,
.compare-after {
  position: absolute;
  inset: 0;
}

.compare-before {
  z-index: 1;
}

.compare-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.compare-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.compare-lbl {
  position: absolute;
  bottom: 1.2rem;
  padding: 0.35em 1em;
  border-radius: var(--rad-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.compare-lbl-before {
  left: 1.2rem;
  background: rgba(44, 36, 25, 0.65);
  color: rgba(247, 244, 239, 0.9);
  z-index: 1;
}

.compare-lbl-after {
  right: 1.2rem;
  background: rgba(196, 98, 45, 0.75);
  color: #fff;
  z-index: 3;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.compare-line {
  width: 3px;
  flex: 1;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.compare-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: var(--rad-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: var(--shadow-lg);
  color: var(--clr-pri);
  font-size: 0.75rem;
}

/* ===========================
   GALLERY PREVIEW
   =========================== */
.sec-gallery {
  background: var(--clr-bg);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;
}

.gal-item {
  overflow: hidden;
  border-radius: var(--rad-lg);
  position: relative;
}

.gal-large {
  grid-column: 1 / 3;
  grid-row: 1;
}

.gal-wide {
  grid-column: 1 / 3;
  grid-row: 2;
}

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

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

/* ===========================
   CTA SECTION
   =========================== */
.sec-cta {
  background: var(--clr-bg-alt);
}

.cta-card {
  background: var(--clr-bg-dark);
  border-radius: var(--rad-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: var(--rad-full);
  background: radial-gradient(
    circle,
    rgba(196, 98, 45, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-deco::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 160px;
  height: 160px;
  border-radius: var(--rad-full);
  background: radial-gradient(
    circle,
    rgba(212, 168, 83, 0.2) 0%,
    transparent 70%
  );
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.cta-body {
  color: rgba(247, 244, 239, 0.75);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ===========================
   STORY PAGE
   =========================== */
.sec-story {
  background: var(--clr-bg);
}

.story-lead {
  padding: 2rem 0 3rem;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 3.5rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.story-img-wrap {
  border-radius: var(--rad-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.story-values {
  margin-bottom: 4rem;
}

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

.val-item {
  background: var(--clr-bg-alt);
  border-radius: var(--rad-lg);
  padding: 1.75rem;
  transition: box-shadow 0.3s ease;
}

.val-item:hover {
  box-shadow: var(--shadow-md);
}

.val-ico {
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: var(--rad-md);
  background: rgba(196, 98, 45, 0.1);
  color: var(--clr-pri);
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.val-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--clr-text);
}

.val-item p {
  font-size: 0.92rem;
  color: var(--clr-text-soft);
  line-height: 1.7;
}

.story-timeline {
  padding-top: 1rem;
}

.tl {
  margin-top: 2.5rem;
  position: relative;
  padding-left: 2rem;
}

.tl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--clr-pri),
    var(--clr-acc),
    var(--clr-sec)
  );
  border-radius: var(--rad-full);
}

.tl-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: var(--rad-full);
  background: var(--clr-pri);
  border: 3px solid var(--clr-bg);
  box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.25);
}

.tl-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-pri);
  background: rgba(196, 98, 45, 0.09);
  padding: 0.2em 0.7em;
  border-radius: var(--rad-full);
  margin-bottom: 0.5rem;
}

.tl-cnt h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--clr-text);
}

.tl-cnt p {
  font-size: 0.93rem;
  color: var(--clr-text-soft);
  line-height: 1.7;
}

/* ===========================
   PROCESS PAGE
   =========================== */
.sec-process {
  background: var(--clr-bg);
}

.proc-steps {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proc-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--clr-border);
  align-items: start;
  transition: background 0.2s;
}

.proc-step:last-child {
  border-bottom: none;
}
.proc-step:hover {
  background: rgba(196, 98, 45, 0.02);
}

.proc-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-acc);
  opacity: 0.6;
  line-height: 1;
  padding-top: 0.2rem;
}

.proc-cnt h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--clr-text);
}

.proc-cnt p {
  font-size: 0.95rem;
  color: var(--clr-text-soft);
  line-height: 1.75;
}

/* ===========================
   SERVICE TYPES
   =========================== */
.sec-types {
  background: var(--clr-bg-alt);
}

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

.type-card {
  background: var(--clr-bg);
  border-radius: var(--rad-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-pri), var(--clr-acc));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.type-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.type-card:hover::before {
  transform: scaleX(1);
}

.type-ico {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: var(--rad-md);
  background: rgba(196, 98, 45, 0.1);
  color: var(--clr-pri);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.type-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.type-card p {
  font-size: 0.92rem;
  color: var(--clr-text-soft);
  line-height: 1.7;
}

/* ===========================
   FAQ (service page)
   =========================== */
.sec-faq {
  background: var(--clr-bg);
}

/* ===========================
   GALLERY PAGE
   =========================== */
.sec-galpage {
  background: var(--clr-bg);
  padding-top: var(--space-lg);
}

.gal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.gal-filter {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5em 1.2em;
  border-radius: var(--rad-full);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text-soft);
  background: transparent;
  transition: var(--trans);
}

.gal-filter:hover {
  border-color: var(--clr-pri);
  color: var(--clr-pri);
}

.gal-filter.active {
  background: var(--clr-pri);
  border-color: var(--clr-pri);
  color: #fff;
}

.gal-masonry {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gal-mitem {
  border-radius: var(--rad-lg);
  overflow: hidden;
  background: var(--clr-bg-alt);
  box-shadow: var(--shadow-md);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.gal-mitem:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.gal-mitem[data-hidden="true"] {
  display: none;
}

.gal-mimg-wrap {
  height: 220px;
  overflow: hidden;
}

.gal-mimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gal-mitem:hover .gal-mimg {
  transform: scale(1.06);
}

.gal-minfo {
  padding: 1.25rem 1.5rem 1.5rem;
}

.gal-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-pri);
  background: rgba(196, 98, 45, 0.09);
  padding: 0.25em 0.7em;
  border-radius: var(--rad-full);
  margin-bottom: 0.6rem;
}

.gal-minfo h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--clr-text);
}

.gal-minfo p {
  font-size: 0.88rem;
  color: var(--clr-text-soft);
  line-height: 1.65;
  margin: 0;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.sec-contact {
  background: var(--clr-bg);
  padding: var(--space-xl) 0;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

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

.cinfo-ico {
  width: 42px;
  height: 42px;
  border-radius: var(--rad-md);
  background: rgba(196, 98, 45, 0.1);
  color: var(--clr-pri);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cinfo-item strong {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-text-muted);
  margin-bottom: 0.25rem;
}

.cinfo-item p,
.cinfo-item a {
  font-size: 0.95rem;
  color: var(--clr-text-soft);
  line-height: 1.6;
  margin: 0;
}

.cinfo-item a:hover {
  color: var(--clr-pri);
}

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===========================
   FORM
   =========================== */
.frm {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.frm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.frm-grp {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.frm-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
}

.frm-lbl span {
  color: var(--clr-pri);
}

.frm-inp,
.frm-txt {
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--rad-md);
  padding: 0.75em 1em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  width: 100%;
  outline: none;
}

.frm-inp:focus,
.frm-txt:focus {
  border-color: var(--clr-pri);
  box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.12);
}

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

.frm-txt {
  resize: vertical;
  min-height: 120px;
}

.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.frm-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clr-pri);
  cursor: pointer;
}

.frm-check label {
  font-size: 0.88rem;
  color: var(--clr-text-soft);
  line-height: 1.6;
  cursor: pointer;
}

.frm-check label a {
  color: var(--clr-pri);
  text-decoration: underline;
}
.frm-check label span {
  color: var(--clr-pri);
}

.frm-submit {
  align-self: flex-start;
  min-height: 48px;
}

/* ===========================
   THANKS PAGE
   =========================== */
.thanks-main {
  min-height: calc(100vh - var(--nav-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
  background: var(--clr-bg);
}

.thanks-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
  background: var(--clr-bg-alt);
  border-radius: var(--rad-xl);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-lg);
}

.thanks-ico {
  font-size: 3.5rem;
  color: var(--clr-sec);
  margin-bottom: 1.5rem;
}

.thanks-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--clr-text);
}

.thanks-body {
  color: var(--clr-text-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.thanks-countdown {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
  padding: 0.75em 1.5em;
  background: var(--clr-bg);
  border-radius: var(--rad-full);
  display: inline-block;
}

.thanks-countdown span {
  font-weight: 700;
  color: var(--clr-pri);
}

.thanks-btn {
  margin: 0 auto;
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-main {
  padding-top: var(--nav-h);
  background: var(--clr-bg);
  min-height: 100vh;
}

.legal-toc-mobile {
  display: none;
  padding: 1rem 1.5rem;
  background: var(--clr-bg-alt);
  border-bottom: 1px solid var(--clr-border);
}

.toc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
  padding: 0.5em 0;
}

.toc-arr {
  margin-left: auto;
  transition: transform 0.3s;
}
.toc-toggle.open .toc-arr {
  transform: rotate(180deg);
}

.toc-mob-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.75rem;
}

.toc-mob-nav.open {
  display: flex;
}

.toc-mob-nav a {
  font-size: 0.88rem;
  color: var(--clr-text-soft);
  padding: 0.4em 0.5em;
  border-radius: var(--rad-sm);
  transition: var(--trans);
}

.toc-mob-nav a:hover {
  color: var(--clr-pri);
  background: rgba(196, 98, 45, 0.06);
}

.legal-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.sidebar-inner {
  background: var(--clr-bg-alt);
  border-radius: var(--rad-lg);
  padding: 1.5rem;
}

.sidebar-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sidebar-link {
  font-size: 0.85rem;
  color: var(--clr-text-soft);
  padding: 0.45em 0.75em;
  border-radius: var(--rad-sm);
  border-left: 2px solid transparent;
  transition: var(--trans);
  line-height: 1.4;
}

.sidebar-link:hover {
  color: var(--clr-pri);
  background: rgba(196, 98, 45, 0.06);
  border-left-color: var(--clr-pri);
}

.sidebar-link.active {
  color: var(--clr-pri);
  background: rgba(196, 98, 45, 0.08);
  border-left-color: var(--clr-pri);
  font-weight: 600;
}

.legal-content {
  min-width: 0;
}

.legal-hdr {
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--clr-border);
  margin-bottom: 2.5rem;
}

.legal-hdr h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--clr-text-soft);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.legal-sec {
  margin-bottom: 3rem;
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}

.legal-sec h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--clr-text);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.legal-sec h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.6rem;
  color: var(--clr-text);
}

.legal-sec p {
  font-size: 0.95rem;
  color: var(--clr-text-soft);
  line-height: 1.8;
  margin-bottom: 1em;
}

.legal-sec ul {
  margin: 0.5rem 0 1rem 1.25rem;
  list-style: disc;
}

.legal-sec li {
  font-size: 0.95rem;
  color: var(--clr-text-soft);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.legal-sec a {
  color: var(--clr-pri);
  text-decoration: underline;
}
.legal-sec a:hover {
  color: var(--clr-pri-dark);
}

.legal-box {
  background: var(--clr-bg-alt);
  border-left: 3px solid var(--clr-pri);
  border-radius: 0 var(--rad-md) var(--rad-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}

.legal-box p {
  font-size: 0.92rem;
  margin: 0;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.legal-table th {
  background: var(--clr-bg-alt);
  padding: 0.75em 1em;
  text-align: left;
  font-weight: 600;
  color: var(--clr-text);
  border-bottom: 2px solid var(--clr-border);
}

.legal-table td {
  padding: 0.7em 1em;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text-soft);
  vertical-align: top;
}

.legal-table tr:last-child td {
  border-bottom: none;
}
.legal-table code {
  background: var(--clr-bg-alt);
  padding: 0.2em 0.5em;
  border-radius: var(--rad-sm);
  font-size: 0.85em;
}

/* ===========================
   FOOTER
   =========================== */
.ftr {
  background: var(--clr-bg-dark);
  color: var(--clr-text-inv);
  padding: 4rem 2rem 2.5rem;
}

.ftr-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.ftr-logo {
  height: 44px;
  width: auto;
  opacity: 0.9;
}

.ftr-tag {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: rgba(247, 244, 239, 0.6);
  margin: 0;
}

.ftr-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1rem;
}

.ftr-nav a {
  font-size: 0.88rem;
  color: rgba(247, 244, 239, 0.7);
  transition: color 0.2s;
}

.ftr-nav a:hover {
  color: var(--clr-acc);
}

.ftr-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.ftr-contact a,
.ftr-contact span {
  font-size: 0.88rem;
  color: rgba(247, 244, 239, 0.65);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.ftr-contact a:hover {
  color: var(--clr-acc);
}
.ftr-contact i {
  font-size: 0.8rem;
}

.ftr-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(247, 244, 239, 0.1);
  width: 100%;
}

.ftr-legal a {
  font-size: 0.8rem;
  color: rgba(247, 244, 239, 0.45);
  transition: color 0.2s;
}

.ftr-legal a:hover {
  color: rgba(247, 244, 239, 0.8);
}

.ftr-copy {
  font-size: 0.78rem;
  color: rgba(247, 244, 239, 0.35);
  margin: 0;
  line-height: 1.5;
}

/* ===========================
   COOKIE CONSENT
   =========================== */
.ck-card {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 9900;
  background: var(--clr-bg);
  border-radius: var(--rad-lg);
  padding: 1.25rem;
  max-width: 300px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--clr-border);
  transform: translateX(calc(-100% - 2rem));
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ck-card.ck-visible {
  transform: translateX(0);
}

.ck-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ck-ico {
  width: 36px;
  height: 36px;
  border-radius: var(--rad-md);
  background: rgba(196, 98, 45, 0.1);
  color: var(--clr-pri);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ck-txt strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--clr-text);
}

.ck-txt p {
  font-size: 0.78rem;
  color: var(--clr-text-soft);
  line-height: 1.5;
  margin: 0;
}

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

.ck-btns {
  display: flex;
  gap: 0.5rem;
}

.ck-accept {
  flex: 1;
  background: var(--clr-pri);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6em 1em;
  border-radius: var(--rad-full);
  transition: var(--trans);
}

.ck-accept:hover {
  background: var(--clr-pri-dark);
}

.ck-settings {
  flex: 1;
  background: var(--clr-bg-alt);
  color: var(--clr-text-soft);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6em 1em;
  border-radius: var(--rad-full);
  border: 1px solid var(--clr-border);
  transition: var(--trans);
}

.ck-settings:hover {
  border-color: var(--clr-pri);
  color: var(--clr-pri);
}

.ck-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9800;
  background: rgba(44, 36, 25, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.ck-modal-overlay.ck-modal-open {
  opacity: 1;
  pointer-events: all;
}

.ck-modal {
  background: var(--clr-bg);
  border-radius: var(--rad-xl);
  padding: 2rem;
  max-width: 440px;
  width: 90vw;
  box-shadow: var(--shadow-xl);
}

.ck-modal h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--clr-text);
}

.ck-opt {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ck-opt label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--clr-bg-alt);
  border-radius: var(--rad-md);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
  transition: background 0.2s;
}

.ck-opt label:hover {
  background: var(--clr-border);
}

.ck-opt input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--clr-pri);
  flex-shrink: 0;
}

.ck-opt em {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  font-style: normal;
}

.ck-modal-btns {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ck-save {
  flex: 1;
  background: var(--clr-bg-alt);
  color: var(--clr-text);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75em 1em;
  border-radius: var(--rad-full);
  border: 1.5px solid var(--clr-border);
  transition: var(--trans);
}

.ck-save:hover {
  border-color: var(--clr-pri);
  color: var(--clr-pri);
}

.ck-accept-all {
  flex: 1;
  background: var(--clr-pri);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75em 1em;
  border-radius: var(--rad-full);
  transition: var(--trans);
}

.ck-accept-all:hover {
  background: var(--clr-pri-dark);
}

.ck-legal {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  text-align: center;
  margin: 0;
}

.ck-legal a {
  color: var(--clr-pri);
  text-decoration: underline;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
  .split-txt {
    padding: 3rem 2rem;
  }
  .split-img-wrap {
    min-height: 380px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .type-grid {
    grid-template-columns: 1fr 1fr;
  }

  .legal-layout {
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4.5rem;
    --nav-h: 68px;
  }

  .hdr-links,
  .hdr-cta,
  .hdr-search-btn {
    display: none;
  }
  .hdr-burger {
    display: flex;
  }

  .hero-overlay {
    clip-path: none;
    background: linear-gradient(
      to bottom,
      rgba(44, 36, 25, 0.7) 0%,
      rgba(44, 36, 25, 0.85) 100%
    );
  }

  .hero-content {
    padding-top: calc(var(--nav-h) + 2rem);
  }
  .hero-title {
    max-width: 100%;
  }

  .gal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .gal-item {
    height: 240px;
  }
  .gal-large,
  .gal-wide {
    grid-column: 1;
    grid-row: auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }
  .val-grid {
    grid-template-columns: 1fr;
  }

  .type-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .frm-row {
    grid-template-columns: 1fr;
  }

  .gal-masonry {
    grid-template-columns: 1fr 1fr;
  }

  .proc-step {
    grid-template-columns: 60px 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-sidebar {
    display: none;
  }
  .legal-toc-mobile {
    display: block;
  }

  .compare-slider {
    height: 280px;
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .gal-masonry {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .ftr-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  .compare-slider {
    height: 220px;
  }

  .ck-card {
    top: auto;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: none;
    transform: translateY(calc(100% + 2rem));
  }

  .ck-card.ck-visible {
    transform: translateY(0);
  }
}

/* ===========================
   GRAIN TEXTURE OVERLAY
   =========================== */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}
