:root {
  --bg: #f5f1ec;
  --surface: #ffffff;
  --surface-alt: #ece6de;
  --text: #1f1f1f;
  --muted: #8a847d;
  --accent: #b59b83;
  --accent-dark: #8d745d;
  --border: #e2dbd2;
  --dark: #151515;

  --container: 1280px;
  --radius: 6px;
  --radius-lg: 18px;

  --shadow: 0 6px 24px rgba(0, 0, 0, 0.05);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(94%, var(--container));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.05;
  color: var(--text);
}

h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.8rem);
  color: white;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.15rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -0.005em;
}

p {
  color: var(--muted);
  font-size: 0.92rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.eyebrow-line::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background: var(--border);
  vertical-align: middle;
  margin-left: 1rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text);
  transition: var(--transition);
}

.link-arrow span {
  transition: var(--transition);
}
.link-arrow:hover span {
  transform: translateX(4px);
}
.link-arrow-sm {
  font-size: 0.68rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  border-radius: 2px;
  transition: var(--transition);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: white;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Navbar */
.navbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  position: fixed;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(14px);
  padding: 1rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-inline: clamp(1.5rem, 3.5vw, 4rem);
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  height: 32px;
  width: auto;
  display: block;
}

.logo span {
  display: block;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-top: 0.25rem;
  opacity: 0.85;
}

/* Nav list */
.nav-list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-list li {
  position: relative;
}

/* Top-level links and dropdown trigger share the same base style */
.nav-list > li > a,
.nav-dropdown-btn {
  position: relative;
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Underline — scoped to top-level only */
.nav-list > li > a::after,
.nav-dropdown-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: white;
  transition: var(--transition);
}

.nav-list > li > a:hover::after {
  width: 100%;
}
.has-dropdown:hover .nav-dropdown-btn::after,
.has-dropdown:focus-within .nav-dropdown-btn::after {
  width: calc(100% - 1rem);
}

/* Chevron icon */
.nav-chevron {
  transition: transform 0.28s ease;
  flex-shrink: 0;
}
.has-dropdown:hover .nav-chevron,
.has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

/* Invisible bridge fills the gap between trigger and panel so hover isn't lost */
.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 1.75rem;
}

/* Dropdown panel */
.dropdown {
  position: absolute;
  top: calc(100% + 1.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0.4rem 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
  z-index: 200;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.2s,
    background 0.2s;
}

/* No underline on dropdown items */
.dropdown a::after {
  display: none !important;
}

.dropdown a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

/* Drawer dropdown (mobile accordion) */
.drawer-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.drawer-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 0;
  font-family: "Inter", sans-serif;
  transition: color 0.2s;
}

.drawer-dropdown-btn:hover {
  color: white;
}

.drawer-dropdown {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.35s ease,
    padding 0.2s ease;
}

.has-drawer-dropdown.is-open .drawer-dropdown {
  max-height: 400px;
  padding-bottom: 0.75rem;
}

.has-drawer-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}

.drawer-dropdown li a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  transition: color 0.2s;
  border: none;
}

.navbar .btn-outline {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.navbar .btn-outline:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #151515;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

/* Hero crossfade carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide picture,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.58),
    rgba(0, 0, 0, 0.18)
  );
  pointer-events: none;
}

.hero-content {
  max-width: 580px;
  padding-top: 80px;
}

.hero-content .eyebrow {
  color: white;
  opacity: 0.9;
}

.hero-copy {
  max-width: 480px;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

/* Product page hero modifier */
.hero--product {
  min-height: 0;
  display: block;
  padding: 160px 0 90px;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22)),
    url("https://images.unsplash.com/photo-1600210492493-0946911123ea?q=80&w=1600&auto=format&fit=crop")
      center/cover;
}

.hero--product .hero-content {
  padding-top: 0;
  max-width: 620px;
}

/* Section Header */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.section-header .eyebrow {
  margin-bottom: 0;
}

.section-header--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

/* Intro Split */
.intro-section {
  padding: 110px 0 90px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.intro-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
}

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

.intro-copy h2 {
  margin-bottom: 1.25rem;
}
.intro-copy p {
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.intro-values {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  border-left: 1px solid var(--border);
  padding-left: 2.5rem;
}

.intro-values li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.intro-values h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.intro-values p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.35;
}

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.project-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.project-image {
  height: 240px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

.project-content {
  padding: 1.25rem 1.4rem 1.4rem;
}

.project-content__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.project-content h3 {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
}

.project-content p {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.card-arrow {
  flex-shrink: 0;
  line-height: 1;
  color: var(--text);
  transition: var(--transition);
}

.project-card:hover .card-arrow {
  transform: translateX(3px);
  color: var(--accent);
}

.project-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 4rem;
  align-items: start;
}

.services-intro h2 {
  margin-bottom: 1.5rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.services-list--5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.services-list--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.services-list--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-item {
  padding: 0;
  background: transparent;
  border: none;
  transition: var(--transition);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 1rem;
  color: var(--accent);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-item h3 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.005em;
}

.service-item p {
  font-size: 0.8rem;
  line-height: 1.55;
}

.service-item:hover {
  transform: translateY(-3px);
}

/* Services / Process — background modifiers */
.services-section--default {
  background: var(--bg);
}
.services-section--tinted {
  background: var(--surface-alt);
}
.services-section--dark {
  background: var(--dark);
  color: white;
}

.services-section--dark .eyebrow {
  color: white;
  opacity: 0.8;
}
.services-section--dark h2 {
  color: white;
}
.services-section--dark .service-item p {
  color: rgba(255, 255, 255, 0.6);
}
.services-section--dark .link-arrow {
  color: white;
}
.services-section--dark .service-icon {
  color: var(--accent);
}

/* Embla carousel viewport */
.embla {
  overflow: hidden;
}

.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
}

.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
}

/* Testimonials */
.testimonials-section {
  background: #1f1f1f;
  color: white;
  padding: 80px 0 60px;
}

.testimonials-page.testimonials-section {
  background: transparent;
  color: var(--text);
  padding: 60px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.testimonials-page {
  background: transparent;
  padding: 0;
}

.testimonials-page .testimonials-grid {
  padding: 4rem 3rem;
}

.testimonials-page .testimonials-grid:nth-child(odd) {
  background: #f9f7f4;
}

.testimonials-page .testimonials-grid:nth-child(even) {
  background: #f0ede8;
}

.testimonials-page .testimonial-content blockquote {
  color: var(--text);
}

.testimonials-page .testimonial-author strong {
  color: var(--text);
}

.testimonials-page .testimonial-author span {
  color: var(--text-muted, #6b6b6b);
}

.testimonials-page .testimonial-content .eyebrow {
  color: var(--accent);
  opacity: 1;
}

.testimonial-content .eyebrow {
  color: white;
  opacity: 0.8;
}

.testimonial-content blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.25;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.005em;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 0.15rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.testimonial-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-slide {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.dot::before {
  content: "";
  position: absolute;
  inset: -7px;
}

.dot.active::before {
  display: none;
}

.dot.active {
  background: white;
  width: 18px;
  border-radius: 3px;
}

/* CTA */
.cta-section {
  background: #1a1a1a;
  color: white;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-inner {
  display: grid;
  grid-template-columns: 180px 1.4fr 1fr auto;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0;
}

.cta-image {
  height: 130px;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.cta-text h2 {
  color: white;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.15;
  margin-top: 0.25rem;
}

.cta-text .eyebrow {
  color: white;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.cta-copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 200px;
}

/* Legal pages */
.legal-section {
  padding: 60px 0 100px;
}

.simple-text {
}

.legal-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted, #555);
  margin-bottom: 2.5rem;
}

.simple-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}

.simple-text h3 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.simple-text h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 1.75rem 0 0.5rem;
  color: var(--text);
}

.simple-text p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-muted, #555);
}

.simple-text ul {
  list-style: disc;
  margin: 1rem 0 1.5rem 1.25rem;
  line-height: 1.8;
}

.simple-text ul li {
  margin-bottom: 0.6rem;
  color: var(--text-muted, #555);
}

.simple-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
}

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

.legal-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--bg-alt, #f5f2ee);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border, #e5e5e5);
}

.legal-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border, #e5e5e5);
  vertical-align: top;
  line-height: 1.7;
  color: var(--text-muted, #555);
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table code {
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  background: var(--bg-alt, #f5f2ee);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  white-space: nowrap;
  color: var(--text);
}

/* Footer */
.footer {
  background: #111;
  color: rgba(255, 255, 255, 0.6);
  padding: 70px 0 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  height: 38px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer h3 {
  margin-bottom: 1.25rem;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer ul li {
  margin-bottom: 0.65rem;
}

.footer ul li a,
.footer p {
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer ul li a:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--accent);
}

.footer-contact a,
.footer-contact span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-btn {
  margin-top: 1rem;
  border-color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  padding: 0.75rem 1.4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 30px;
}

.footer-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-awards {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-award-badge {
  display: inline-flex;
  opacity: 0.75;
  transition: opacity var(--transition);
}

.footer-award-badge:hover {
  opacity: 1;
}

.footer-award-badge img {
  width: 52px;
  height: 52px;
  display: block;
}

.footer-made-in {
  text-align: center;
  padding: 14px 0 0;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 24px;
}

/* ── Form styles ─────────────────────────────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}

.form-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(181, 155, 131, 0.12);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  min-height: 1.2em;
}

.contact-form .form-input:user-invalid,
.contact-form .form-textarea:user-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
  color: #c0392b;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a847d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

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

.form-hint {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* Checkbox grid (quote internals) */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.75rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text);
  user-select: none;
}

.checkbox-item input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
  cursor: pointer;
  border-radius: 2px;
}

/* Form section divider */
.form-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.form-section:first-child {
  border-top: none;
  padding-top: 0;
}

.form-section-title {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* Contact info blocks */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 0.1rem;
}

.contact-info-icon svg {
  width: 16px;
  height: 16px;
}

.contact-info-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

.contact-info-value a {
  color: var(--text);
  transition: color 0.2s;
}
.contact-info-value a:hover {
  color: var(--accent);
}

.contact-social {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}

.contact-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Two-col page layout */
.page-layout {
  padding: 80px 0 100px;
}

.page-cols {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 6rem;
  align-items: start;
}

.page-cols-equal {
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.page-sidebar {
  position: sticky;
  top: 100px;
}

/* Quote trust panel */
.trust-panel {
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.trust-panel-image {
  height: 240px;
  background: #ddd center/cover no-repeat;
}

.trust-panel-body {
  padding: 2rem;
}

.trust-panel-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.trust-panel-body p {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.trust-stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.trust-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}

.call-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--dark);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
  transition: var(--transition);
}

.call-cta:hover {
  background: #222;
}

.call-cta-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-cta-icon svg {
  width: 18px;
  height: 18px;
  color: white;
}

.call-cta-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.2rem;
}

.call-cta-number {
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .page-cols,
  .page-cols-equal {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .page-sidebar {
    position: static;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-layout {
    padding: 60px 0 80px;
  }
}

@media (max-width: 600px) {
  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Gallery page — page header */
.page-header {
  background: var(--dark);
  padding: 140px 0 60px;
  color: white;
}

.page-header__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.02em;
}

.page-header__subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 500px;
}

/* Gallery page — filter bar */
.gallery-filters {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.filter-btns {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--muted);
  transition: var(--transition);
  white-space: nowrap;
}

.filter-btn:hover {
  color: var(--text);
  border-color: var(--text);
}
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Gallery page — grid */
.gallery-section {
  padding: 60px 0 100px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.gallery-item.hidden,
.project-card.hidden {
  display: none;
}

.gallery-thumb {
  aspect-ratio: 1;
  background: var(--surface-alt) center / cover no-repeat;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.gallery-zoom {
  color: white;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
  display: flex;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.7rem 0 0.2rem;
}

.gallery-project {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-cat {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .gallery-filters {
    position: static;
  }
  .filter-btns {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-header {
    padding: 120px 0 50px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* ── FAQ page ───────────────────────────────────────────── */

.faq-section {
  padding: 5rem 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.faq-topic {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.faq-topic:hover {
  color: var(--text);
  background: var(--surface-alt);
}

.faq-topic.active {
  color: var(--text);
  font-weight: 600;
  background: var(--surface-alt);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item.hidden {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-icon-v {
  transition: opacity 0.25s ease;
}

.faq-item.open .faq-icon-v {
  opacity: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(90deg);
  color: var(--text);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}

@media (max-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .faq-topic {
    width: auto;
  }
}

/* ── End FAQ page ───────────────────────────────────────── */

/* ── Project photo page ─────────────────────────────────── */

.project-photos {
  padding: 3rem 0 5rem;
}

.masonry-grid {
  columns: 3;
  column-gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.masonry-item a {
  display: block;
  position: relative;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}

.masonry-item:hover img {
  transform: scale(1.04);
}

.masonry-item .gallery-overlay {
  border-radius: 0;
}

.masonry-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.42);
}

.masonry-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 900px) {
  .masonry-grid {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .masonry-grid {
    columns: 1;
  }
}

/* ── End project photo page ─────────────────────────────── */

.form-field--company {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-values {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    padding-left: 0;
  }

  .intro-values li {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .services-list,
  .services-list--5,
  .services-list--4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-dots {
    grid-column: 1;
  }

  .cta-inner {
    grid-template-columns: 1fr 1fr;
    padding: 2.5rem 0;
  }

  .cta-image {
    grid-row: span 2;
    height: 100%;
    min-height: 200px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile nav — hamburger, drawer, overlay */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.drawer-overlay.is-visible {
  display: block;
}

.drawer-overlay.is-open {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 82vw);
  background: #151515;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.25rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.drawer-close:hover {
  color: white;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.drawer-nav > a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s;
}

.drawer-nav > a:hover {
  color: white;
}

.drawer-dropdown li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Active nav items */
.nav-list > li.dx-active > a,
.nav-list > li.dx-active > .nav-dropdown-btn {
  color: var(--accent);
}

.nav-list > li.dx-active > a::after {
  width: 100%;
  background-color: var(--accent);
}
.nav-list > li.dx-active > .nav-dropdown-btn::after {
  width: calc(100% - 1rem);
  background-color: var(--accent);
}

.drawer-nav > a.dx-active,
.drawer-nav .dx-active > .drawer-dropdown-btn {
  color: var(--accent);
}

.dropdown li.dx-active > a {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}
.drawer-dropdown li.dx-active > a {
  color: var(--accent);
}

.drawer-cta {
  margin-top: 2.5rem;
  text-align: center;
  width: 100%;
}

@media (max-width: 900px) {
  .section,
  .intro-section {
    padding: 70px 0;
  }

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

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-list,
  .services-list--5,
  .services-list--4,
  .services-list--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 1200px) {
  nav {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .cta-image {
    grid-row: auto;
    height: 180px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .project-grid,
  .services-list,
  .services-list--5,
  .services-list--4,
  .services-list--3,
  .testimonial-gallery {
    grid-template-columns: 1fr;
  }

  .intro-values li {
    flex: 1 1 100%;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .testimonial-content blockquote {
    font-size: 1.5rem;
  }
}

/* ── Product pages ───────────────────────────────────────────── */

/* Breadcrumb — shared with hero--product */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.2);
}
.breadcrumb-current {
  color: rgba(255, 255, 255, 0.55);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.7rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

/* Feature rows — full-bleed alternating layout */
.feature-row {
  display: flex;
  align-items: stretch;
  min-height: 500px;
}

.feature-row {
  flex-direction: row-reverse;
}
.feature-row.alt {
  flex-direction: row;
}

.feature-row-img {
  flex: 0 0 52%;
  overflow: hidden;
}

.feature-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.feature-row:hover .feature-row-img img {
  transform: scale(1.03);
}

.feature-row-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem clamp(2.5rem, 5vw, 5.5rem);
  background: var(--surface);
}

.feature-row:nth-child(even) .feature-row-content {
  background: var(--surface-alt);
}

.feature-row-content h2 {
  margin-bottom: 1.25rem;
}
.feature-row-content > p {
  margin-bottom: 1.75rem;
  line-height: 1.75;
  max-width: 400px;
}

/* Style tags */
.style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.style-tag {
  padding: 0.38rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Finishing touches */
.touches-section {
  background: var(--surface-alt);
}

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

.touch-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.touch-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.touch-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
}

.touch-card h3 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.touch-card p {
  font-size: 0.82rem;
  line-height: 1.65;
}

/* Responsive — product pages */
@media (max-width: 1024px) {
  .feature-row-img {
    flex: 0 0 48%;
  }
}

@media (max-width: 900px) {
  .feature-row,
  .feature-row.alt {
    flex-direction: column;
    min-height: auto;
  }
  .feature-row-img {
    flex: 0 0 300px;
  }
  .feature-row-content {
    padding: 3rem 2rem;
  }
  .touches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-hero {
    padding: 130px 0 70px;
  }
}

@media (max-width: 600px) {
  .product-hero-actions {
    flex-direction: column;
  }
  .touches-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Cookie Banner ──────────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 320px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
}

.cookie-banner--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__text {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.1rem;
}

.cookie-banner__link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.cookie-banner__link:hover {
  color: white;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-banner__btn {
  flex: 1;
  padding: 0.6rem 0.85rem;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: "Inter", sans-serif;
}

.cookie-banner__btn--decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.55);
}

.cookie-banner__btn--decline:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}

.cookie-banner__btn--accept {
  background: var(--accent);
  color: white;
}

.cookie-banner__btn--accept:hover {
  background: var(--accent-dark);
}

@media (max-width: 600px) {
  .cookie-banner {
    width: 100%;
    bottom: 0;
    right: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}

/* ── End Cookie Banner ──────────────────────────────────────── */

/* ── Two Column Text Block ──────────────────────────────────── */

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.two-col-text__divider {
  background: var(--border);
  align-self: stretch;
}

@media (max-width: 768px) {
  .two-col-text {
    grid-template-columns: 1fr;
  }

  .two-col-text__divider {
    display: none;
  }
}

/* ── End Two Column Text Block ──────────────────────────────── */

/* ── Areas We Cover ─────────────────────────────────────────── */

.areas-region {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.areas-region:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.areas-region h2 {
  margin-bottom: 1.25rem;
}

.areas-region h2 a {
  color: var(--text);
  transition: color var(--transition);
}

.areas-region h2 a:hover {
  color: var(--accent);
}

.areas-list {
  list-style: none;
  padding: 0;
  margin-left: 1.5rem;
}

.areas-list li a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}

.areas-list li a:hover {
  color: var(--accent);
}

/* ── End Areas We Cover ──────────────────────────────────────── */
