/* =====================================================
   FM Extensions - colour palette drawn from the logo:
   copper / rose-gold ring, cream brush stroke, white
   ===================================================== */
:root {
  --copper-dark: #8c4a2f;
  --copper: #b56a3a;
  --copper-light: #d0904f;
  --gold-highlight: #e2b077;
  --cream: #efe9dd;
  --cream-soft: #f7f4ee;
  --white: #ffffff;
  --ink: #2b2622;
  --ink-soft: #6b6259;
  --copper-gradient: linear-gradient(135deg, #8c4a2f 0%, #b56a3a 40%, #d0904f 75%, #e2b077 100%);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Jost", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: 1.45rem; }

.center { text-align: center; }

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.script-accent {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--copper);
}

.script-inline {
  font-family: var(--font-script);
  color: var(--copper);
}

.section { padding: 5.5rem 0; }

.section-cream {
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, var(--white) 0%, transparent 60%),
    var(--cream-soft);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--copper-gradient);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(140, 74, 47, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(140, 74, 47, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--copper-dark);
  border: 1.5px solid var(--copper);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(181, 106, 58, 0.08);
  box-shadow: none;
}

.btn-small { padding: 0.55rem 1.5rem; font-size: 0.75rem; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.nav-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--cream);
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--ink);
}

.nav-brand-text span { color: var(--copper); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-links a:not(.btn):hover { color: var(--copper); }

.nav-toggle-input { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--copper-dark);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 5rem 0 6rem;
  text-align: center;
}

.hero-brush {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 38% at 50% 42%, var(--cream) 0%, rgba(239, 233, 221, 0.55) 55%, transparent 75%),
    radial-gradient(ellipse 30% 18% at 18% 30%, rgba(226, 176, 119, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 30% 18% at 84% 62%, rgba(181, 106, 58, 0.10) 0%, transparent 70%);
  transform: rotate(-6deg) scale(1.25);
  pointer-events: none;
}

.hero-inner { position: relative; }

.hero-logo {
  width: clamp(180px, 28vw, 260px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  box-shadow: 0 18px 45px rgba(140, 74, 47, 0.18);
}

.hero h1 { margin: 0.4rem 0 1rem; }

.hero-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.about-circle {
  aspect-ratio: 1;
  max-width: 340px;
  margin-inline: auto;
  border-radius: 50%;
  border: 3px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--copper-gradient) border-box;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(140, 74, 47, 0.15);
}

.about-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; color: var(--ink-soft); }

.checklist {
  list-style: none;
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 400;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.55em;
  height: 0.9em;
  border-right: 2.5px solid var(--copper);
  border-bottom: 2.5px solid var(--copper);
  transform: rotate(40deg);
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 18px;
  padding: 2.4rem 1.8rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(43, 38, 34, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(140, 74, 47, 0.13);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  border: 1.5px solid var(--copper-light);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(226, 176, 119, 0.14), rgba(239, 233, 221, 0.5));
}

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

.service-card h3 { margin-bottom: 0.7rem; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ===== Models Wanted ===== */
.models {
  background: var(--copper-gradient);
  text-align: center;
}

.models-inner { max-width: 620px; }

.models .script-accent {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.models h2 {
  color: var(--white);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.models-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.models .btn {
  background: var(--white);
  color: var(--copper-dark);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

/* ===== Contact ===== */
.contact-lead {
  color: var(--ink-soft);
  margin-top: 0.6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 18px;
  padding: 2.2rem 1.6rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(43, 38, 34, 0.05);
}

.contact-card h3 { margin-bottom: 0.4rem; }

.contact-card a {
  color: var(--copper-dark);
  font-weight: 500;
  text-decoration: none;
}

.contact-card a:hover { text-decoration: underline; }

.contact-script { font-size: 1.7rem; }

.contact-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

.footer-logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--gold-highlight);
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  color: var(--gold-highlight);
}

.footer-social a {
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: rgba(239, 233, 221, 0.55);
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid, .contact-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1.2rem;
    background: var(--white);
    border-bottom: 1px solid var(--cream);
    padding: 1.5rem 0 2rem;
    box-shadow: 0 14px 30px rgba(43, 38, 34, 0.08);
  }

  .nav-toggle-input:checked ~ .nav-links { display: flex; }

  .section { padding: 4rem 0; }
}
