/* ============================================================
   MINOLA — Fine Jewellery
   Palette: deep emerald, champagne gold, ivory
   Type: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

:root {
  --emerald: #0e2f25;
  --emerald-deep: #081f18;
  --gold: #c9a25e;
  --gold-light: #e6cf9f;
  --ivory: #faf7f0;
  --ivory-2: #f2ecdf;
  --ink: #22271f;
  --muted: #6d7268;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 31, 24, 0.14);
  --radius: 4px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --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);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.25s ease; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 9px; height: 9px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.section-title { font-size: clamp(30px, 4vw, 44px); color: var(--emerald); }
.section-title.light { color: var(--ivory); }

.section { padding: 96px 0; }

.lead { color: var(--muted); max-width: 620px; margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--emerald);
  font-family: var(--font-body);
}
.btn-solid { background: var(--gold); color: var(--emerald-deep); }
.btn-solid:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline:hover { background: var(--gold); color: var(--emerald-deep); }
.btn-light { border-color: var(--gold); color: var(--ivory); }
.btn-light:hover { background: var(--gold); color: var(--emerald-deep); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--emerald-deep);
  color: rgba(250, 247, 240, 0.85);
  font-size: 13.5px;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { color: var(--gold-light); font-size: 14px; }
.topbar-social a:hover { color: var(--white); }

/* ---------- Header / Nav ---------- */
.header {
  background: var(--ivory);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 162, 94, 0.25);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 8px 30px rgba(8, 31, 24, 0.08); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 6px;
  color: var(--emerald);
  font-weight: 600;
  text-transform: uppercase;
}
.logo span { color: var(--gold); }
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 4.5px;
  color: var(--muted);
  margin-top: -2px;
}
.nav ul { display: flex; gap: 34px; }
.nav a {
  font-size: 13.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 18px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { width: 26px; height: 2px; background: var(--emerald); transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(rgba(8, 31, 24, 0.72), rgba(8, 31, 24, 0.82)),
    url("https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=1800&q=80")
    center 35% / cover no-repeat;
  color: var(--ivory);
  padding: 110px 0 120px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 500;
  line-height: 1.1;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.75);
}
.hero-phone {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold-light);
}
.hero-phone:hover { color: var(--white); }
.hero-actions { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero enquiry card */
.enquiry-card {
  background: var(--ivory);
  color: var(--ink);
  padding: 38px 34px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}
.enquiry-card .eyebrow { margin-bottom: 6px; }
.enquiry-card h3 { font-size: 26px; color: var(--emerald); margin-bottom: 20px; }
.form-field { margin-bottom: 14px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #d8d2c2;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color 0.25s ease;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field .error-msg {
  display: none;
  color: #b0472f;
  font-size: 12.5px;
  margin-top: 4px;
}
.form-field.invalid input,
.form-field.invalid textarea,
.form-field.invalid select { border-color: #b0472f; }
.form-field.invalid .error-msg { display: block; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 10px; text-align: center; }
.form-success {
  display: none;
  background: #eaf3ec;
  border: 1px solid #9dbfa6;
  color: #2d5b3a;
  padding: 12px 14px;
  font-size: 14px;
  margin-bottom: 14px;
  border-radius: var(--radius);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo img { box-shadow: var(--shadow); }
.about-badge {
  position: absolute;
  right: -22px;
  bottom: -26px;
  background: var(--emerald);
  color: var(--ivory);
  padding: 22px 26px;
  text-align: center;
  border: 1px solid var(--gold);
}
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--gold-light);
  line-height: 1;
}
.about-badge span { font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-points { margin: 22px 0 30px; }
.about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}
.about-points li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- Stats ---------- */
.stats {
  background: var(--emerald);
  color: var(--ivory);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat h3 {
  font-size: clamp(38px, 4vw, 52px);
  color: var(--gold-light);
  font-weight: 500;
}
.stat p { font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(250,247,240,0.75); margin-top: 6px; }

/* ---------- Collections (services) ---------- */
.center-head { text-align: center; }
.center-head .eyebrow { justify-content: center; }
.center-head .lead { margin-left: auto; margin-right: auto; }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(201, 162, 94, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-img { overflow: hidden; height: 260px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 28px 26px 32px; }
.card-body h3 { font-size: 24px; color: var(--emerald); margin-bottom: 10px; }
.card-body p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.card-link {
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-link:hover { color: var(--emerald); }

/* ---------- Also offer ---------- */
.also {
  background: var(--ivory-2);
}
.also-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.also-list { margin: 24px 0 30px; columns: 2; column-gap: 34px; }
.also-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  break-inside: avoid;
}
.also-list li::before {
  content: "";
  width: 8px; height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.also-photo img { box-shadow: var(--shadow); }

/* ---------- Reasons ---------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 40px;
  margin-top: 56px;
}
.reason { display: flex; gap: 18px; align-items: flex-start; }
.reason-icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  display: grid;
  place-items: center;
  margin-top: 4px;
}
.reason-icon span {
  transform: rotate(-45deg);
  font-size: 20px;
  color: var(--gold);
}
.reason h3 { font-size: 21px; color: var(--emerald); margin-bottom: 6px; }
.reason p { color: var(--muted); font-size: 14.5px; }

/* ---------- Reviews strip ---------- */
.reviews {
  background: var(--emerald);
  color: var(--ivory);
  padding: 70px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.reviews h2 { font-size: clamp(26px, 3vw, 34px); color: var(--ivory); }
.reviews .sub { font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); margin-top: 10px; }
.review-badge {
  border: 1px solid rgba(201, 162, 94, 0.4);
  padding: 24px 26px;
  text-align: center;
}
.review-badge .stars { color: var(--gold-light); font-size: 18px; letter-spacing: 3px; }
.review-badge h3 { font-size: 19px; margin: 8px 0 2px; color: var(--ivory); font-family: var(--font-body); font-weight: 500; }
.review-badge p { font-size: 13.5px; color: rgba(250,247,240,0.7); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}
.testimonial {
  background: var(--white);
  border: 1px solid rgba(201, 162, 94, 0.25);
  padding: 34px 30px;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(201, 162, 94, 0.3);
  position: absolute;
  top: 6px; right: 22px;
  line-height: 1;
}
.testimonial .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.testimonial p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.testimonial-person img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}
.testimonial-person h4 { font-size: 16px; color: var(--emerald); }
.testimonial-person span { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(rgba(8, 31, 24, 0.8), rgba(8, 31, 24, 0.85)),
    url("https://images.unsplash.com/photo-1601121141461-9d6647bca1ed?auto=format&fit=crop&w=1600&q=80")
    center / cover no-repeat fixed;
  color: var(--ivory);
  text-align: center;
  padding: 90px 0;
}
.cta-band h2 { font-size: clamp(30px, 4vw, 46px); color: var(--ivory); max-width: 720px; margin: 0 auto; }
.cta-band .eyebrow { justify-content: center; }
.cta-band .btn { margin-top: 32px; }

/* ---------- Contact / quote ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: flex-start;
}
.office-card { margin-top: 24px; }
.office-card h3 { font-size: 26px; color: var(--emerald); margin-bottom: 14px; }
.office-card p { color: var(--muted); margin-bottom: 18px; }
.office-lines li {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.office-lines .ic {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 16px;
}
.office-lines strong { display: block; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--emerald); }
.office-lines span { color: var(--muted); font-size: 15px; }

.quote-card {
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  padding: 40px 36px;
}
.quote-card h3 { font-size: 26px; color: var(--emerald); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--emerald-deep);
  color: rgba(250, 247, 240, 0.75);
  padding: 80px 0 0;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 46px;
  padding-bottom: 56px;
}
.footer .logo { color: var(--ivory); font-size: 26px; }
.footer-about p { margin-top: 16px; max-width: 300px; }
.footer h4 {
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer li { margin-bottom: 10px; }
.footer a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201, 162, 94, 0.4);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--gold-light);
  transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--emerald-deep); }
.footer-bottom {
  border-top: 1px solid rgba(201, 162, 94, 0.2);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(250, 247, 240, 0.5);
}

/* ---------- Inner page hero ---------- */
.page-hero {
  background: linear-gradient(rgba(8, 31, 24, 0.7), rgba(8, 31, 24, 0.8)),
    url("https://images.unsplash.com/photo-1617038220319-276d3cfab638?auto=format&fit=crop&w=1800&q=80")
    center 40% / cover no-repeat;
  color: var(--ivory);
  text-align: center;
  padding: 90px 0;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 500; }
.page-hero .crumb { margin-top: 12px; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}
.team-card { text-align: center; }
.team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.team-card h3 { font-size: 22px; color: var(--emerald); margin-top: 20px; }
.team-card span { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}
.value-card {
  background: var(--white);
  border: 1px solid rgba(201, 162, 94, 0.25);
  padding: 36px 30px;
  text-align: center;
}
.value-card .reason-icon { margin: 0 auto 22px; }
.value-card h3 { font-size: 22px; color: var(--emerald); margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 15px; }

/* ---------- Map ---------- */
.map-wrap { margin-top: 70px; }
.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(35%) sepia(8%);
  box-shadow: var(--shadow);
}

/* ---------- Contact info cards ---------- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}
.info-card {
  background: var(--white);
  border: 1px solid rgba(201, 162, 94, 0.25);
  padding: 36px 28px;
  text-align: center;
}
.info-card .reason-icon { margin: 0 auto 20px; }
.info-card h3 { font-size: 21px; color: var(--emerald); margin-bottom: 8px; }
.info-card p { color: var(--muted); font-size: 15px; }
.info-card a { color: var(--gold); font-weight: 500; }
.info-card a:hover { color: var(--emerald); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .cta-band { background-attachment: scroll; }
  * { transition: none !important; animation: none !important; }
}

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--emerald-deep);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 90;
}
.back-top.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .also-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .cards-3, .testimonials-grid, .reasons-grid, .team-grid, .values-grid, .info-cards { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-badge { right: 10px; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .hero { padding: 80px 0 90px; }
  .cards-3, .testimonials-grid, .reasons-grid, .team-grid, .values-grid, .info-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .also-list { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; }
  .topbar-social { display: none; }

  /* Mobile nav */
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--emerald-deep);
    display: grid;
    place-items: center;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 99;
  }
  .nav.open { transform: none; }
  .nav ul { flex-direction: column; text-align: center; gap: 26px; }
  .nav a { color: var(--ivory); font-size: 17px; }
  .header-cta .btn { display: none; }
  .hamburger { z-index: 100; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--ivory); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--ivory); }
}
