/* =================================================================
   [COMPANY_NAME] — marketing site
   Plain CSS, no build step. Mobile-first.
   Palette: warm cream, charcoal, terracotta accent, sage green.
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Colours */
  --cream:        #faf7f1;
  --cream-2:      #f3ede2;
  --ink:          #23282b;
  --ink-soft:     #45525a;
  --line:         #e3dccf;
  --white:        #ffffff;

  --terracotta:   #c4663a;   /* primary accent */
  --terracotta-d: #a8512b;   /* hover */
  --sage:         #5d7a6b;   /* secondary accent */
  --sage-d:       #4a6356;
  --amber-bg:     #fbeede;   /* tint behind icons */

  /* Type */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing / shape */
  --radius:    14px;
  --radius-sm: 10px;
  --shadow:    0 8px 30px rgba(35, 40, 43, 0.08);
  --shadow-lg: 0 18px 50px rgba(35, 40, 43, 0.14);
  --maxw:      1140px;
  --gutter:    clamp(1rem, 4vw, 2.5rem);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--terracotta-d); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--tint { background: var(--cream-2); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h2, .section--ink h3 { color: var(--white); }

.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  margin-bottom: .75rem;
}
.section--ink .eyebrow { color: #e6a877; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.section--ink .lead { color: #d6cdbd; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: .9rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--terracotta); color: var(--white); box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--terracotta-d); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }

.btn--light { background: var(--white); color: var(--ink); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding-block: .5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 9px;
  background: var(--terracotta);
  display: grid;
  place-items: center;
  color: var(--white);
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
}

/* Primary nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
}
.nav__links a:hover { color: var(--terracotta-d); }

.header-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.tel-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.tel-link:hover { color: var(--terracotta-d); text-decoration: none; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-size: .82rem;
  font-weight: 700;
}
.lang-toggle a {
  padding: .35rem .7rem;
  color: var(--ink-soft);
  text-decoration: none;
}
.lang-toggle a[aria-current="true"] {
  background: var(--ink);
  color: var(--white);
}

/* Mobile menu button */
.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-btn span::before { position: absolute; top: -6px; }
.menu-btn span::after  { position: absolute; top: 6px; }
.menu-btn[aria-expanded="true"] span { background: transparent; }
.menu-btn[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* =================================================================
   HERO
   ================================================================= */
.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero__title { margin-bottom: 1rem; }
.hero__title em {
  font-style: normal;
  color: var(--terracotta);
}
.hero__sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: 1.75rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 1.5rem;
}
.hero__note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .92rem;
  color: var(--ink-soft);
  margin: 0;
}
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--cream-2);
}
.hero__badge {
  position: absolute;
  bottom: -18px;
  left: -10px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: .85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  max-width: 260px;
}
.hero__badge strong { display: block; font-size: .95rem; }
.hero__badge span { font-size: .8rem; color: var(--ink-soft); }
.hero__badge .dot {
  width: 40px; height: 40px; flex: none;
  border-radius: 50%;
  background: var(--amber-bg);
  display: grid; place-items: center;
  color: var(--terracotta-d);
}

/* =================================================================
   TRUST BAR
   ================================================================= */
.trustbar { background: var(--ink); color: var(--cream); }
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  padding-block: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .92rem;
}
.trust-item svg { color: #e6a877; flex: none; }
.trust-item strong { display: block; color: var(--white); font-size: .98rem; }
.trust-item span { color: #c8bfae; }

/* =================================================================
   SERVICES
   ================================================================= */
.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--amber-bg);
  color: var(--terracotta-d);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .35rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* =================================================================
   TEAM
   ================================================================= */
.team-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--cream-2);
}
.team-card__body { padding: 1.5rem 1.6rem 1.75rem; }
.team-card__body h3 { margin-bottom: .15rem; }
.team-card__role {
  color: var(--terracotta-d);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: .85rem;
}
.team-card__body p { color: var(--ink-soft); margin-bottom: 0; }
.team-intro {
  background: var(--amber-bg);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.team-intro svg { color: var(--terracotta); flex: none; margin-top: 3px; }
.team-intro p { margin: 0; }

/* =================================================================
   REALISATIONS (before / after)
   ================================================================= */
.work-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
.work-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba figure { margin: 0; position: relative; }
.ba img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--cream-2);
}
.ba figcaption {
  position: absolute;
  top: .6rem; left: .6rem;
  background: rgba(35, 40, 43, .85);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .55rem;
  border-radius: 6px;
}
.ba figcaption.after { background: var(--sage); }
.work-card__body { padding: 1.1rem 1.3rem 1.35rem; }
.work-card__body h3 { font-size: 1.1rem; margin-bottom: .15rem; }
.work-card__body p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

/* =================================================================
   WHY US
   ================================================================= */
.why-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.why-item {
  display: flex;
  gap: 1rem;
  padding: 1.3rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.why-item__num {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--sage);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
}
.why-item h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.why-item p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.quotes {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.quote .stars { color: var(--terracotta); letter-spacing: 2px; margin-bottom: .75rem; }
.quote blockquote {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  color: var(--ink);
}
.quote .who { display: flex; align-items: center; gap: .65rem; margin-top: auto; }
.quote .who .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream-2);
  display: grid; place-items: center;
  font-weight: 700; color: var(--ink-soft);
  flex: none;
}
.quote .who strong { display: block; font-size: .92rem; }
.quote .who span { font-size: .82rem; color: var(--ink-soft); }
.placeholder-note {
  font-size: .85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* =================================================================
   SERVICE AREA
   ================================================================= */
.area {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
.area__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.area__map img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
.contact-info ul { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.contact-info li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.contact-info li svg { color: var(--terracotta-d); flex: none; margin-top: 3px; }
.contact-info a { color: var(--cream); font-weight: 600; }
.contact-info .muted { color: #c8bfae; font-size: .9rem; }

.form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: .35rem;
}
.field .req { color: var(--terracotta); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: .8rem .9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 102, 58, .15);
}
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: .82rem; color: var(--ink-soft); margin: .25rem 0 0; }
.form__status {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--amber-bg);
  font-size: .92rem;
  display: none;
}
.form__status.is-visible { display: block; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  background: #1a1f21;
  color: #c8bfae;
  padding-block: 3rem 1.5rem;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 .9rem;
}
.site-footer a { color: #d6cdbd; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.footer-brand .brand { color: var(--white); margin-bottom: .75rem; }
.footer-brand .brand__name small { color: #9b9384; }
.footer-brand p { max-width: 34ch; }
.rbq-badge {
  display: inline-block;
  border: 1px solid #3a4144;
  border-radius: 8px;
  padding: .35rem .7rem;
  font-size: .8rem;
  color: #d6cdbd;
  margin-top: .5rem;
}
.footer-bottom {
  border-top: 1px solid #2d3335;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  font-size: .82rem;
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .trustbar__grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 880px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .trustbar__grid { grid-template-columns: repeat(5, 1fr); padding-block: 2.25rem; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .area { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: .85fr 1.15fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ---------- Mobile nav behaviour ---------- */
@media (max-width: 919px) {
  .menu-btn { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .25s ease;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links a { display: block; padding: .9rem 0; font-size: 1.05rem; }
  .nav .btn--primary { margin-top: 1rem; }
  .header-actions .tel-link span.tel-text { display: none; }
}

@media (min-width: 920px) {
  .nav { position: static; transform: none; }
}

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