:root {
  --navy: #7A1418;
  --navy-2: #8F1B20;
  --teal: #C1272D;
  --teal-dark: #9A1E23;
  --gold: #C7972B;
  --sky: #FBEEEC;
  --sky-2: #F5DEDB;
  --ink: #1C2B2E;
  --muted: #63706C;
  --line: #EDD9D6;
  --white: #FFFFFF;
  --header-bg: #FFFFFF;
  --card-bg: #FFFFFF;
  --footer-bg: #2E0A0C;
  --footer-line: #4A1518;
  --modal-bg: #FFFFFF;
  --input-bg: #FFFFFF;
}

[data-theme="dark"] {
  --navy: #E0A2A5;
  --navy-2: #C87A7E;
  --teal: #E84C52;
  --teal-dark: #C1272D;
  --gold: #E5B23E;
  --sky: #1A1213;
  --sky-2: #281B1D;
  --ink: #EAEAEA;
  --muted: #A0AAB0;
  --line: #3D2325;
  --white: #121212;
  --header-bg: #1A1213;
  --card-bg: #1E1718;
  --footer-bg: #140506;
  --footer-line: #2D1214;
  --modal-bg: #1E1718;
  --input-bg: #281B1D;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}

p {
  margin: 0;
  line-height: 1.62;
  color: var(--muted);
}

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

img, svg {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-wide {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 clamp(40px, 6vw, 96px);
}

.section {
  padding: 88px 0;
}

.eyebrow {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* Header & Topbar */
.topbar {
  background: #7A1418;
  color: #E8C9C7;
  font-size: 0.78rem;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar a {
  color: #F0D98A;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s ease;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand span.name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  background: var(--sky);
  border: 1px solid var(--line);
  color: var(--ink);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s ease;
}

.theme-toggle:hover {
  background: var(--sky-2);
}

.theme-toggle .sun-icon {
  display: block;
}

.theme-toggle .moon-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

nav.links {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav.links a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
}

nav.links a:hover {
  color: var(--teal);
}

.nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 0.9rem !important;
}

.nav-cta:hover {
  background: var(--teal-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .2s ease;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
}

.btn-teal:hover {
  background: var(--teal-dark);
}

.btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #7A1418;
}

.btn-white:hover {
  background: #EDEAE0;
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

/* Hero Section — preserve the original image frame (no cropping) */
.hero {
  background: linear-gradient(135deg, #7A1418 0%, #8F1B20 60%, #5C1013 100%);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas: "content visual";
  align-items: center;
  gap: 56px;
  padding: 96px 28px 80px;
}

.hero-text-wrapper {
  grid-area: content;
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  color: #fff;
  max-width: 13ch;
}

.hero p.lede {
  margin-top: 20px;
  max-width: 44ch;
  color: #E3C4C2;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}

.hero-stats div span {
  color: #D2A6A4;
  font-size: 0.82rem;
}

/* Image container does NOT impose a fixed height.
   This is intentional: the source image keeps its complete original frame. */
.hero-visual {
  grid-area: visual;
  position: relative;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-visual img,
.hero-visual svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 18px;
}

/* Large desktop: give the image more width without changing/cropping its frame */
@media (min-width: 1200px) {
  .hero .container {
    max-width: 1400px;
  }

  .hero-inner {
    grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
    gap: 64px;
    padding-top: 100px;
    padding-bottom: 90px;
  }
}

/* Tablet / medium screens */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "content";
    gap: 28px;
    padding: 72px 28px 70px;
  }

  .hero-visual {
    width: 100%;
    order: -1;
  }

  .hero-visual img,
  .hero-visual svg {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 16px;
  }

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

/* Mobile — full original image remains visible */
@media (max-width: 720px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "content";
    gap: 22px;
    padding: 54px 22px 60px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    max-width: 100%;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-visual img,
  .hero-visual svg {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 14px;
  }

  .hero-text-wrapper {
    width: 100%;
  }

  .hero p.lede {
    max-width: none;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 24px;
    margin-top: 34px;
  }
}

/* Small phones */
@media (max-width: 520px) {
  .hero-inner {
    padding: 44px 18px 52px;
    gap: 20px;
  }

  .hero-visual img,
  .hero-visual svg {
    border-radius: 12px;
  }
}

/* Categories Strip */
.cat-strip {
  background: var(--sky);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.cat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}

.cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 34px 20px;
  border-left: 1px solid var(--line);
  text-align: center;
  transition: .2s ease;
}

.cat-tile:first-child {
  border-left: 0;
}

.cat-tile:hover {
  background: var(--sky-2);
}

.cat-tile .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(122, 20, 24, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cat-tile .icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-tile strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.cat-tile span {
  color: var(--muted);
  font-size: 0.8rem;
}

/* Trust Badges */
.trust {
  padding: 90px 0;
}

.trust-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}

.trust-head h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.trust-card {
  text-align: center;
  padding: 0 20px;
}

.trust-card .badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 10px 24px rgba(193, 39, 45, 0.22);
}

.trust-card:nth-child(2) .badge {
  background: linear-gradient(135deg, var(--gold), #A87A1E);
  box-shadow: 0 10px 24px rgba(199, 151, 43, 0.25);
}

.trust-card:nth-child(3) .badge {
  background: linear-gradient(135deg, #7A1418, #2E0A0C);
  box-shadow: 0 10px 24px rgba(122, 20, 24, 0.25);
}

.trust-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.94rem;
}

/* Category Deep Dive */
.categories {
  background: var(--sky);
}

.cat-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.cat-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  max-width: 14ch;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.95rem;
}

.text-link:hover {
  text-decoration: underline;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solution-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: .2s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.solution-card .thumb {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.solution-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card .cat-label {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.solution-card h3 {
  font-size: 1.08rem;
}

.solution-card p {
  font-size: 0.9rem;
}

.solution-card a {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: auto;
}

/* Product Lineup Grid */
.products {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--teal);
}

.product-card .photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--sky);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Remove padding so the image can touch the edges */
}

.product-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crops slightly to completely fill the card */
  display: block;
}

.product-card .info {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}

.product-card .cat-label {
  font-size: 0.7rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-card h3 {
  font-size: 1.02rem;
  text-align: center;
}

.product-card p {
  font-size: 0.86rem;
  text-align: center;
}

/* Partnership Pathway */
.partnership {
  padding: 96px 0;
}

.partnership-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.partnership h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  max-width: 13ch;
}

.partnership > .container > div > p {
  margin-top: 18px;
  max-width: 42ch;
  font-size: 1.02rem;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.path-card {
  background: var(--sky);
  border-radius: 14px;
  padding: 26px;
  position: relative;
  border: 1px solid var(--line);
}

.path-card .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #7A1418;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.path-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.path-card p {
  font-size: 0.88rem;
}

/* About Story */
.story {
  background: #7A1418;
  color: #fff;
  padding: 100px 0 132px;
  margin-bottom: 48px;
}

.story-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.story h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  max-width: 15ch;
}

.story p {
  color: #DDBAB8;
  margin-top: 18px;
  font-size: 1.03rem;
  max-width: 48ch;
}

.story-visual {
  border-radius: 16px;
  overflow: hidden;
  height: 340px;
  background: linear-gradient(135deg, #8F1B20, #7A1418);
}

.story-visual svg {
  width: 100%;
  height: 100%;
}

.story .text-link {
  color: var(--gold);
  margin-top: 22px;
  display: inline-flex;
}

/* Reviews */
.reviews {
  padding: 90px 0;
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}

.reviews-head h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-row strong {
  font-size: 1.05rem;
  color: var(--navy);
}

.rating-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

.verified-badge .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
  font-style: italic;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.review-card {
  background: var(--sky);
  border-radius: 14px;
  padding: 26px;
  border: 1px solid var(--line);
}

.review-card .stars {
  font-size: 0.95rem;
  margin-bottom: 14px;
  display: block;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 16px;
}

.review-card .who {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* Call To Action */
.cta-section {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-box h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  max-width: 14ch;
}

.cta-box p {
  color: #F6DAD6;
  margin-top: 16px;
  max-width: 42ch;
}

.cta-panel {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 30px;
}

.cta-panel .addr {
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.6;
}

.cta-panel .addr strong {
  display: block;
  margin-bottom: 4px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Footer Section */
footer {
  background: var(--footer-bg);
  color: #B99593;
  padding: 64px 0 28px;
  transition: background-color 0.3s ease;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2.8fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--footer-line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand span {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.footer-desc {
  margin-top: 14px;
  font-size: 0.9rem;
  max-width: 28ch;
  color: #A88582;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

footer h4 {
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 16px;
  font-weight: 700;
}

footer .links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .links-col a {
  font-size: 0.9rem;
}

footer .links-col a:hover {
  color: #fff;
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #5A3A39;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B99593;
}

.social-row a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.8rem;
  color: #8C7472;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive Styles */
@media (max-width: 980px) {
  .cat-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-tile:nth-child(3) {
    border-left: 0;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partnership-inner, .story-inner, .cta-box {
    grid-template-columns: 1fr;
  }
  .path-grid {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  nav.links {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--header-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 22px;
    transform: translateX(100%);
    transition: .25s ease;
  }
  nav.links.open {
    transform: translateX(0);
  }
  .menu-toggle {
    display: block;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .topbar .container {
    flex-direction: column;
    gap: 4px;
  }
  /* Desktop-like Structured Grid in Mobile Mode */
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-top {
    gap: 32px;
  }
  .cta-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Modal Form Styles */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 8, 9, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 12px;
}

.contact-modal-overlay.open {
  display: flex;
}

.contact-modal {
  background: var(--modal-bg);
  border-radius: 16px;
  max-width: 580px;
  width: 100%;
  max-height: 94vh;
  overflow-y: auto;
  padding: 24px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
}

.contact-modal h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.contact-modal p.modal-sub {
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.contact-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  padding: 4px;
}

.contact-modal .modal-close:hover {
  color: var(--navy);
}

.form-field {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.form-field input, .form-field select {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--input-bg);
}

.form-field input:focus, .form-field select:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.form-field textarea {
  width: 100%;
  min-height: 220px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--input-bg);
  line-height: 1.45;
  resize: vertical;
  box-sizing: border-box;
}

.form-field textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.opt-label {
  font-size: 0.75rem;
  font-weight: normal;
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 0.92rem;
  justify-content: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 10px 0 4px;
}

.form-success.show {
  display: block;
}

.form-success .check-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.form-error {
  color: #B21F24;
  font-size: 0.85rem;
  margin-top: 10px;
  display: none;
}

.form-error.show {
  display: block;
}

.form-error a {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .brand-mark {
    width: 60px;
    height: 60px;
  }
}

/* Shared Site Footer (pg-footer) — used across every page */
.pg-footer {
  background-color: var(--footer-bg);
  color: #B99593;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  padding: 60px 0 28px 0;
  border-top: 1px solid var(--footer-line);
  transition: background-color 0.3s ease;
}

.pg-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pg-footer-main {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pg-footer-brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pg-footer-brand .brand-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pg-footer-brand .brand-mark {
  width: 40px;
  height: 40px;
}

.pg-footer-brand .brand-mark img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.pg-brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.pg-brand-tagline {
  font-size: 0.875rem;
  color: #A88582;
  line-height: 1.5;
  margin: 0;
}

.pg-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.pg-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #5A3A39;
  color: #B99593;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.pg-social-icon:hover {
  color: #ffffff;
  border-color: var(--teal);
  background-color: rgba(255, 255, 255, 0.08);
}

.pg-footer-columns {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.pg-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pg-links-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.pg-links-col a {
  color: #B99593;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.pg-links-col a:hover {
  color: #ffffff;
}

.pg-footer-divider {
  height: 1px;
  background-color: var(--footer-line);
  margin-bottom: 24px;
}

.pg-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.pg-copyright {
  color: #8C7472;
  font-size: 0.8125rem;
}

.pg-legal-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pg-legal-nav a {
  color: #B99593;
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s ease-in-out;
}

.pg-legal-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.pg-separator {
  color: #5A3A39;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .pg-footer-main {
    flex-direction: column;
    gap: 36px;
  }
  .pg-footer-columns {
    gap: 32px;
    justify-content: space-between;
    width: 100%;
  }
  .pg-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Standard sub-page hero (category/legal pages) */
.page-hero {
  padding: 100px 0 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #5C1013 100%);
  color: #fff;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 12px; color: #fff; }
.page-hero p { max-width: 620px; margin: 0 auto; color: #E3C4C2; font-size: 1.1rem; }
.cat-detail { padding: 64px 0; }
.cat-detail .container { max-width: 900px; }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--teal); text-decoration: none; font-weight: 600; }
.back-link:hover { text-decoration: underline; }
.cat-detail h2 { color: var(--navy); margin-bottom: 4px; }
.cat-detail .content-body { margin-top: 16px; line-height: 1.7; color: var(--muted); font-size: 1.05rem; }
.cat-detail .cat-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Legal pages (Privacy Policy / Terms & Conditions) */
.legal {
  max-width: 1220px;
  margin: 0 auto;
  padding: 72px 28px 90px;
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 70px;
}
.legal .toc { position: sticky; top: 105px; height: max-content; }
.legal .toc-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .16em;
  font-weight: 800; color: var(--muted); margin-bottom: 14px;
}
.legal .toc a {
  display: block; text-decoration: none; color: var(--muted);
  font-size: 13px; padding: 6px 0;
}
.legal .toc a:hover { color: var(--teal); }
.legal .content h2 {
  font-size: 23px; line-height: 1.25; margin: 38px 0 12px;
  color: var(--navy); letter-spacing: -.015em;
}
.legal .content h2:first-child { margin-top: 0; }
.legal .content h3 { font-size: 16px; margin: 25px 0 7px; color: var(--navy); }
.legal .content p { margin: 0 0 15px; color: var(--muted); }
.legal .content ul { margin: 8px 0 20px; padding-left: 22px; color: var(--muted); }
.legal .content li { margin: 6px 0; }
.legal .notice {
  background: var(--sky); border-left: 3px solid var(--teal);
  padding: 18px 20px; margin: 0 0 28px;
}
.legal .notice p { margin: 0; font-size: 14px; color: var(--ink); }
.legal .updated { font-size: 12px; color: #E3C4C2; margin-top: 18px; }

@media (max-width: 850px) {
  .legal { grid-template-columns: 1fr; padding-top: 48px; }
  .legal .toc { position: static; border-bottom: 1px solid var(--line); padding-bottom: 22px; }
  .legal .toc a { display: inline-block; margin-right: 18px; }
}

@media (max-width: 520px) {
  .contact-modal {
    padding: 18px 16px;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .form-field input, .form-field select {
    padding: 6px 8px;
    font-size: 0.84rem;
  }
  .form-field textarea {
    min-height: 180px;
  }
}