/* ============================================================
   Georgia Placsom Makeup Artist — Website Stylesheet
   Brand palette: Espresso & Rose
   ============================================================ */

/* ── TOKENS ── */
:root {
  --espresso:  #241510;
  --rose:      #C2737A;
  --rose-deep: #9A4E55;
  --gold:      #C9A25A;
  --ivory:     #FDFAF7;
  --ivory-2:   #F7F0EA;
  --ivory-3:   #EDE4DA;
  --ivory-4:   #E8DDD4;
  --mocha:     #7A5F55;
  --mocha-lt:  #B09080;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--ivory);
  color: var(--espresso);
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── SHARED UTILITIES ── */
.eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.sec-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 42px;
  line-height: 1.1;
  color: var(--espresso);
}
.sec-title em { font-style: italic; color: var(--rose); }
.sec-rule {
  width: 36px;
  height: 0.5px;
  background: var(--gold);
  margin: 18px 0;
}
.btn-dark {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--espresso);
  border: none;
  padding: 14px 28px;
  transition: background 0.2s;
}
.btn-dark:hover { background: #3a2218; }
.btn-line {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mocha);
  background: none;
  border: 0.5px solid var(--gold);
  padding: 14px 28px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-line:hover { color: var(--espresso); border-color: var(--espresso); }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: var(--ivory);
  border-bottom: 0.5px solid var(--ivory-4);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 19px;
  color: var(--espresso);
  letter-spacing: 0.08em;
}
.nav-logo span { color: var(--rose); }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mocha);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--espresso); }
.nav-cta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  background: none;
  border: 0.5px solid var(--espresso);
  padding: 10px 22px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--espresso); color: var(--ivory); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 48px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 66px;
  line-height: 1.0;
  color: var(--espresso);
  letter-spacing: 0.01em;
}
.hero-title em { font-style: italic; color: var(--rose); }
.hero-rule {
  width: 36px;
  height: 0.5px;
  background: var(--gold);
  margin: 28px 0;
}
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.65;
  color: var(--mocha);
  max-width: 360px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-right {
  background: var(--ivory-3);
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Placeholder shown before image is added */
.ph-frame {
  width: 210px;
  height: 290px;
  border: 0.5px solid var(--mocha-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.ph-inner {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--mocha-lt);
  text-align: center;
  padding: 16px;
  line-height: 1.6;
}
.ph-inner span { display: block; font-size: 10px; margin-top: 8px; opacity: 0.6; }
.hero-stat {
  position: absolute;
  bottom: 40px;
  left: -1px;
  background: var(--ivory);
  border: 0.5px solid var(--ivory-4);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 2;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 26px;
  color: var(--espresso);
  line-height: 1;
}
.stat-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ── TICKER ── */
.ticker {
  border-top: 0.5px solid var(--ivory-4);
  border-bottom: 0.5px solid var(--ivory-4);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--ivory);
}
.ticker-inner {
  display: inline-flex;
  animation: tick 26s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ti-item {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mocha);
  padding: 0 28px;
}
.ti-sep { font-size: 9px; color: var(--gold); }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.about-img {
  background: var(--ivory-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 540px;
  position: relative;
}
.about-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}


.about-ph-frame {
  width: 190px;
  height: 250px;
  border: 0.5px solid var(--mocha-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.about-ph-inner {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--mocha-lt);
  text-align: center;
  padding: 16px;
  line-height: 1.6;
}
.about-content {
  padding: 80px 56px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}
.about-body {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  color: #5A3C30;
  margin-bottom: 28px;
}
.beliefs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.belief { display: flex; align-items: flex-start; gap: 14px; }
.belief-n {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding-top: 3px;
  min-width: 16px;
}
.belief-t {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--espresso);
}

/* ── SERVICES ── */
.services {
  padding: 100px 48px;
  background: var(--ivory);
}
.sec-hdr {
  text-align: center;
  margin-bottom: 56px;
}
.sec-hdr .sec-rule { margin: 16px auto 0; }
.services-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  gap: 1px;
  background: var(--ivory-4);
  max-width: 900px;
  margin: 0 auto 48px;
}
.svc {
  background: var(--ivory);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
}
.svc.hero-svc { background: var(--ivory-2); }
.svc-tag {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.svc-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 26px;
  color: var(--espresso);
  margin-bottom: 4px;
}
.svc-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 20px;
}
.svc-rule {
  width: 24px;
  height: 0.5px;
  background: var(--ivory-4);
  margin-bottom: 20px;
}
.svc-items {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.svc-items li {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--mocha);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-items li::before {
  content: '—';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}
.services-cta { text-align: center; }

/* ── PROCESS ── */
.process {
  padding: 100px 48px;
  background: var(--ivory-2);
}
.process-header { margin-bottom: 56px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--ivory-4);
}
.step {
  padding: 36px 28px 36px 0;
  border-right: 0.5px solid var(--ivory-4);
  position: relative;
}
.step:last-child { border-right: none; }
.step + .step { padding-left: 28px; }
.step-dot {
  position: absolute;
  top: -4.5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.step:nth-child(2) .step-dot,
.step:nth-child(4) .step-dot { background: var(--rose); }
.step-n {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 44px;
  color: var(--ivory-4);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--espresso);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mocha);
}

/* ── PULL QUOTE ── */
.pull-quote {
  padding: 88px 120px;
  background: var(--ivory);
  border-top: 0.5px solid var(--ivory-4);
  border-bottom: 0.5px solid var(--ivory-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pq-rule-top,
.pq-rule-bot {
  width: 1px;
  height: 44px;
  background: var(--gold);
}
.pq-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 34px;
  line-height: 1.45;
  color: var(--espresso);
  max-width: 600px;
}
.pq-attr {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ── GALLERY ── */
.gallery-section {
  padding: 100px 48px;
  background: var(--ivory-2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
}
.gallery-ph {
  aspect-ratio: 3 / 4;
  background: var(--ivory-3);
}
.gallery-grid img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  width: 100%;
}
.gallery-note {
  font-size: 11px;
  color: var(--mocha-lt);
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid var(--ivory-4);
}
.contact-left {
  padding: 80px 56px 80px 48px;
  border-right: 0.5px solid var(--ivory-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}
.contact-body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.75;
  color: var(--mocha);
  margin-bottom: 36px;
  max-width: 320px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.c-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 300;
  color: var(--espresso);
}
.c-icon {
  width: 30px;
  height: 30px;
  border: 0.5px solid var(--ivory-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-right {
  padding: 80px 48px 80px 56px;
  background: var(--ivory);
}
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.f-in {
  background: var(--ivory-2);
  border: 0.5px solid var(--ivory-4);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  padding: 13px 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.f-in::placeholder { color: var(--mocha-lt); }
.f-in:focus { border-color: var(--gold); }
.f-ta {
  background: var(--ivory-2);
  border: 0.5px solid var(--ivory-4);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  padding: 13px 14px;
  outline: none;
  resize: vertical;
  min-height: 96px;
  width: 100%;
  transition: border-color 0.2s;
  border-radius: 0;
}
.f-ta:focus { border-color: var(--gold); }
.f-ta::placeholder { color: var(--mocha-lt); }
.f-submit {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--espresso);
  border: none;
  padding: 15px 30px;
  align-self: flex-start;
  transition: background 0.2s;
}
.f-submit:hover  { background: #3a2218; }
.f-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.f-field { display: flex; flex-direction: column; gap: 5px; }
.f-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mocha);
}
.cf-turnstile    { margin-top: 4px; }
.f-feedback {
  font-size: 12px;
  font-weight: 300;
  min-height: 18px;
  color: var(--rose);
}
.f-feedback.success { color: #5a8a6a; }

/* ── FOOTER ── */
.footer {
  padding: 36px 48px;
  border-top: 0.5px solid var(--ivory-4);
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 15px;
  color: var(--espresso);
  letter-spacing: 0.08em;
}
.footer-logo span { color: var(--rose); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mocha-lt);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--espresso); }
.footer-copy { font-size: 10px; color: var(--ivory-4); letter-spacing: 0.06em; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero, .about, .contact { grid-template-columns: 1fr; }
  .hero-right { min-height: 400px; }
  .about-img { min-height: 360px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pull-quote { padding: 64px 40px; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .nav { padding: 0 24px; }
  .hero-left { padding: 60px 24px; }
  .hero-title { font-size: 46px; }
  .sec-title { font-size: 32px; }
  .about-content, .contact-left, .contact-right { padding: 60px 24px; }
  .services, .process, .gallery-section { padding: 64px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 20px; text-align: center; padding: 36px 24px; }
  .footer-links { justify-content: center; }
  .pq-text { font-size: 24px; }
  .pull-quote { padding: 64px 24px; }
  .hero-stat { bottom: 20px; }
}
