/* CA Audit Dubai — UAE Professional theme
   Plain CSS3. Relative paths. No framework. */

:root {
  --green: #0B3D2E;
  --green-deep: #082C21;
  --green-2: #0F5B43;
  --gold: #C8A24A;
  --gold-2: #8A6D2C;
  --red: #8B1E24;
  --sand: #F7F5F0;
  --sand-2: #EFEBE3;
  --ink: #1C1C1A;
  --ink-muted: #4A4A45;
  --line: rgba(11, 61, 46, 0.14);
  --line-gold: rgba(200, 162, 74, 0.38);
  --white: #FFFcf7;
  --shadow: 0 12px 40px rgba(8, 44, 33, 0.12);
  --radius: 4px;
  --header-h: 84px;
  --container: 1160px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6.5rem;
  --ease: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--green-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--gold);
  color: var(--green-deep);
  padding: 0.6rem 1rem;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.18;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  margin: 0 0 0.75em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
h3 { font-size: 1.28rem; letter-spacing: -0.01em; }
h4 { font-size: 1.08rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }

p { margin: 0 0 1em; }

ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

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

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.7rem;
}

.kicker.light { color: var(--gold); }

.lede {
  font-size: 1.12rem;
  color: var(--ink-muted);
  max-width: 42rem;
}

.section {
  padding: var(--space-8) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: var(--space-6);
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head.centered .lede {
  margin-inline: auto;
}

/* Official ribbon */
.official-bar {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--green-deep) 0%,
    var(--green) 28%,
    var(--gold) 52%,
    var(--gold-2) 78%,
    var(--red) 100%
  );
}

/* Mashrabiya lattice */
.lattice {
  position: relative;
  isolation: isolate;
}

.lattice::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath d='M0 0L56 56M56 0L0 56M28 0L56 28L28 56L0 28Z' fill='none' stroke='%23C8A24A' stroke-width='0.7'/%3E%3C/svg%3E");
  background-size: 56px 56px;
}

.lattice > * {
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  line-height: 1.2;
}

.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #d4b05a;
  color: var(--green-deep);
}

.btn-outline {
  background: transparent;
  color: var(--sand);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: rgba(200, 162, 74, 0.14);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-outline-dark:hover {
  background: var(--green);
  color: var(--sand);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.icon-svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--green-deep);
  border-bottom: 1px solid rgba(200, 162, 74, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--sand);
  flex-shrink: 0;
}

.logo:hover { color: var(--sand); }

.logo img {
  width: 46px;
  height: 46px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.logo-text span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-gold);
  background: transparent;
  color: var(--sand);
  cursor: pointer;
  border-radius: var(--radius);
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  position: relative;
  margin: 0 auto;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-header.is-open .nav-toggle span { background: transparent; }
.site-header.is-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li > a,
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.85rem;
  color: var(--sand);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.nav-list > li > a:hover,
.dropdown-trigger:hover,
.nav-list a[aria-current="page"] {
  color: var(--gold);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  z-index: 20;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.has-dropdown.is-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.dropdown a:hover {
  background: var(--sand-2);
  color: var(--green);
}

.header-cta {
  flex-shrink: 0;
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-cta .btn {
  padding: 0.7rem 1rem;
  font-size: 0.86rem;
}

.nav-phone {
  display: none;
}

/* Footer */
.site-footer {
  background: var(--green-deep);
  color: #d9d4c8;
  padding: var(--space-8) 0 var(--space-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.2rem;
}

.footer-brand .logo { margin-bottom: 1rem; }

.footer-brand p {
  color: #cfc8b8;
  font-size: 0.95rem;
  max-width: 28rem;
}

.site-footer h3 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li { margin-bottom: 0.45rem; }

.site-footer a {
  color: #e7e1d4;
  text-decoration: none;
}

.site-footer a:hover { color: var(--gold); }

.footer-contact p {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: var(--space-7);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(200, 162, 74, 0.22);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #b7b09f;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--green-deep);
  color: var(--sand);
  padding: 3.4rem 0 3.6rem;
  overflow: hidden;
}

.page-hero.has-photo {
  background-color: var(--green-deep);
  background-image:
    linear-gradient(105deg, rgba(8, 44, 33, 0.93) 0%, rgba(8, 44, 33, 0.82) 52%, rgba(8, 44, 33, 0.68) 100%),
    url("../images/deira-creek.jpg");
  background-size: cover;
  background-position: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.6rem; }

.page-hero p {
  color: #ddd6c6;
  max-width: 40rem;
  margin: 0;
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #cfc8b8; }
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  color: rgba(200, 162, 74, 0.55);
}

/* Home hero */
.home-hero {
  background: var(--green-deep);
  color: var(--sand);
  padding: 3.8rem 0 4.2rem;
  overflow: hidden;
}

.home-hero.has-photo {
  background-color: var(--green-deep);
  background-image:
    linear-gradient(105deg, rgba(8, 44, 33, 0.94) 0%, rgba(8, 44, 33, 0.84) 46%, rgba(8, 44, 33, 0.62) 100%),
    url("../images/deira-creek.jpg");
  background-size: cover;
  background-position: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.home-hero h1 {
  color: var(--white);
  margin-bottom: 0.85rem;
}

.home-hero .lede {
  color: #ddd6c6;
  margin-bottom: 1.6rem;
}

.hero-seal {
  display: flex;
  justify-content: center;
}

.hero-seal img {
  width: min(100%, 380px);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(200, 162, 74, 0.28);
}

.hero-stats dt {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.hero-stats dd {
  margin: 0;
  font-size: 0.82rem;
  color: #d4ccbc;
}

/* Trust strip */
.trust-strip {
  background: var(--sand-2);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}

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

.trust-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.trust-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--green);
}

.trust-icon svg { width: 18px; height: 18px; }

.trust-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--green-deep);
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* Split about */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.illustration-frame {
  background: var(--green-deep);
  border: 1px solid var(--line-gold);
  padding: 1.5rem;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.illustration-frame img {
  width: 100%;
}

.photo-frame {
  overflow: hidden;
  border: 1px solid var(--line-gold);
  background: var(--green-deep);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 0.85rem;
  margin-top: var(--space-6);
}

.photo-strip figure { margin: 0; }

.photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.photo-strip figcaption,
.photo-frame figcaption {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 0.45rem;
}

.card-photo {
  margin: -1.5rem -1.4rem 1.15rem;
  overflow: hidden;
  background: var(--green-deep);
}

.card-photo img {
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.hub-card .card-photo {
  margin: -1.8rem -1.6rem 1.25rem;
}

.hub-card .card-photo img {
  height: 190px;
}

.service-photo {
  margin: 0 0 1.6rem;
}

.service-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
}

.office-photo {
  margin: 1.2rem 0 0;
}

.office-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
}

/* Cards */
.cards-4,
.cards-3,
.cards-2 {
  display: grid;
  gap: 1.25rem;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem 1.4rem 1.35rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

a.card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}

.card-index {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.card h3 { margin-bottom: 0.5rem; }

.card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  flex: 1;
}

.card-link {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green);
  text-decoration: none;
}

.hub-card {
  padding: 1.8rem 1.6rem;
}

.hub-card ul {
  margin: 0.4rem 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--ink-muted);
}

.hub-card li { margin-bottom: 0.35rem; }

.detail-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.25rem 1.2rem;
}

a.detail-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

a.detail-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: inherit;
}

a.detail-card .card-link {
  margin-top: 0.85rem;
}

.detail-card h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.detail-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

/* Stat band */
.stat-band {
  background: var(--green);
  color: var(--sand);
  padding: 3.2rem 0;
}

.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-band-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-band-grid span {
  font-size: 0.92rem;
  color: #e4ddd0;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.process-step {
  position: relative;
  padding-top: 0.4rem;
}

.process-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.7rem;
}

.process-step h3 { margin-bottom: 0.4rem; }

.process-step p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Quote */
.quote-block {
  background: var(--sand-2);
  border-left: 4px solid var(--gold);
  padding: 2.4rem 2rem;
}

.quote-block blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 480;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.4;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: 0.04em;
}

/* CTA band */
.cta-band {
  background: var(--green-deep);
  color: var(--sand);
  padding: 3.4rem 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); }

.cta-band p {
  color: #d8d1c2;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.cta-band .btn-row {
  justify-content: center;
}

/* Service layout */
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.4rem;
  align-items: start;
}

.prose h2 {
  margin-top: 2rem;
}

.prose h2:first-child { margin-top: 0; }

.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.2rem);
}

.side-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.3rem 1.2rem;
  margin-bottom: 1rem;
}

.side-box h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.9rem;
}

.side-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-box li { border-top: 1px solid var(--line); }

.side-box li:first-child { border-top: 0; }

.side-box a {
  display: block;
  padding: 0.65rem 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 650;
  font-size: 0.92rem;
}

.side-box a:hover,
.side-box a[aria-current="page"] {
  color: var(--green);
}

.side-cta {
  background: var(--green-deep);
  color: var(--sand);
  border-color: transparent;
}

.side-cta h3 { color: var(--gold); }

.side-cta p {
  font-size: 0.92rem;
  color: #d8d1c2;
}

.side-cta a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.side-cta .btn {
  width: 100%;
  margin-top: 0.4rem;
}

/* FAQ */
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  margin-bottom: 0.65rem;
  padding: 0.2rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.9rem 0;
  list-style: none;
  color: var(--green-deep);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold-2);
  font-weight: 500;
  font-size: 1.2rem;
}

.faq details[open] summary::after { content: "–"; }

.faq details p {
  color: var(--ink-muted);
  padding-bottom: 0.9rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.6rem;
}

.info-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  align-items: start;
}

.info-row svg {
  width: 20px;
  height: 20px;
  color: var(--gold-2);
  margin-top: 0.15rem;
}

.info-row strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.map-wrap {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 240px;
}

.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

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

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--green-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}

.field textarea { min-height: 140px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0.4rem 0 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.4rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--gold);
  clip-path: polygon(14% 44%, 0 62%, 38% 100%, 100% 18%, 82% 0, 38% 68%);
}

.principles .card {
  background: var(--white);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .btn:hover,
  a.card:hover { transform: none; }
}

/* Responsive */
@media (max-width: 1100px) {
  .cards-4,
  .process-grid,
  .hero-stats,
  .stat-band-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .header-cta { display: none; }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--green-deep);
    border-bottom: 1px solid var(--line-gold);
    padding: 0.6rem 1.2rem 1.2rem;
  }

  .site-header.is-open .site-nav { display: block; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: var(--green);
    border: 0;
    min-width: 0;
    padding: 0.2rem 0 0.5rem;
  }

  .has-dropdown.is-open > .dropdown { display: block; }

  .dropdown a { color: var(--sand); }
  .dropdown a:hover { background: var(--green-2); color: var(--gold); }

  .nav-phone { display: block; margin-top: 0.4rem; }
  .nav-phone a { color: var(--gold) !important; }

  .hero-grid,
  .split,
  .service-layout,
  .contact-grid,
  .cards-3,
  .form-row,
  .checklist,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .sidebar { position: static; }

  .hero-seal { order: -1; }
  .hero-seal img { width: min(100%, 240px); }
}

@media (max-width: 640px) {
  .cards-4,
  .cards-2,
  .process-grid,
  .hero-stats,
  .stat-band-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 3.2rem 0; }
  .home-hero { padding: 2.4rem 0 2.8rem; }
  .header-inner { min-height: 72px; }
  .logo-text strong { font-size: 0.95rem; }
  .btn-row .btn { width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* Instagram */
.ig-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  border-radius: var(--radius);
  text-decoration: none;
  flex-shrink: 0;
}

.ig-link svg {
  width: 18px;
  height: 18px;
}

.ig-link:hover {
  background: rgba(200, 162, 74, 0.16);
  color: var(--gold);
}

.ig-text {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.ig-text:hover { color: #d4b05a; }

.ig-text svg {
  width: 18px;
  height: 18px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-card {
  overflow: hidden;
}

.blog-card .card-photo img {
  height: 170px;
}

.blog-meta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.4rem;
  align-items: start;
}

.article-body {
  max-width: 44rem;
}

.article-body h2 { margin-top: 2rem; }

.article-body h2:first-of-type { margin-top: 0.4rem; }

@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .article-layout { grid-template-columns: 1fr; }
}
