/* ============================================================
   Primrose Weddings & Events Ltd — Corporate Site
   Editorial / magazine style. Black + white + sage accent.
   ============================================================ */

:root {
  --black:       #0A0A0A;
  --off-black:   #1A1A1A;
  --white:       #FFFFFF;
  --stone:       #F4F1EC;
  --stone-dark:  #E8E2D8;
  --sage:        #6B7A5E;
  --sage-light:  #8B9D7A;
  --mid:         #6B6B6B;
  --light:       #B0B0B0;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;

  --max-width: 1280px;
  --nav-height: 72px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--off-black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 7vw, 7rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.5rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }

.label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 18px;
}

p { color: var(--mid); line-height: 1.75; }
p + p { margin-top: 1em; }

strong { color: var(--off-black); font-weight: 600; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: var(--off-black); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--stone); }

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone-dark);
  z-index: 1000;
}
.nav-logo img { display: none; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.nav-logo-text .logo-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--black);
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.nav-logo-text .logo-sub {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.48rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
}
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--black); }
.nav-links .btn-black { color: var(--white); padding: 10px 22px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--black); transition: var(--transition); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-height);
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
  background: var(--white);
}
.hero-text-col h1 {
  margin-bottom: 28px;
  color: var(--black);
}
.hero-text-col h1 em {
  font-style: italic;
  color: var(--sage);
}
.hero-text-col p {
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 40px;
  color: var(--mid);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-col {
  position: relative;
  overflow: hidden;
}
.hero-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-credentials {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--stone-dark);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-cred {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
}

/* ── Intro ────────────────────────────────────────────────────── */
.intro {
  background: var(--black);
  padding: 56px 48px;
  text-align: center;
}
.intro p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: rgba(255,255,255,0.85);
  max-width: 900px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.4;
}
.intro em { color: #A8BC8E; font-style: italic; }

/* ── Section helpers ─────────────────────────────────────────── */
.section { padding: 120px 48px; }
.section--stone { background: var(--stone); }
.section--black { background: var(--black); }
.container { max-width: var(--max-width); margin: 0 auto; }
.section-head { margin-bottom: 72px; }
.section-head h2 { color: var(--black); margin-bottom: 16px; max-width: 700px; }
.section-head.centre { text-align: center; }
.section-head.centre h2 { margin-left: auto; margin-right: auto; }
.section--black .section-head h2 { color: var(--white); }
.section--black p { color: rgba(255,255,255,0.55); }
.section--black .label { color: #A8BC8E; }

/* ── Brands ──────────────────────────────────────────────────── */
.brands-list { display: flex; flex-direction: column; gap: 1px; background: var(--stone-dark); }
.brand-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 40px 48px;
  background: var(--white);
  transition: background var(--transition);
  text-decoration: none;
  color: inherit;
}
.brand-row:hover { background: var(--stone); }
.brand-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--stone-dark);
  line-height: 1;
  flex-shrink: 0;
}
.brand-row-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
}
.brand-row-tag {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}
.brand-row-desc { font-size: 0.88rem; color: var(--mid); max-width: 360px; }
.brand-row-arrow {
  font-size: 1.4rem;
  color: var(--stone-dark);
  transition: color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.brand-row:hover .brand-row-arrow { color: var(--sage); transform: translateX(6px); }

/* ── Highlights — photo grid ──────────────────────────────────── */
.brand-section { border-top: 1px solid var(--stone-dark); }
.brand-section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}
.brand-section-header h2 { color: var(--black); }
.brand-section-header .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
}
.stats-row { display: flex; gap: 40px; margin: 20px 0; }
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
}
.stat-l {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 4px;
}
.photo-grid-3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 220px;
  gap: 6px;
}
.photo-grid-3 .p1 { grid-row: 1 / 3; }
.photo-grid-3 .p2,
.photo-grid-3 .p3 { }
.photo-grid-3 .p4 { grid-column: 2 / 4; }
.photo-slot {
  overflow: hidden;
  background: var(--stone);
}
.photo-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.photo-slot:hover img { transform: scale(1.04); }

/* Two-photo grid */
.photo-grid-2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 480px;
  gap: 6px;
}
.photo-grid-2 .p1 { }
.photo-grid-2 .p2 { }

/* ── Ethos ────────────────────────────────────────────────────── */
.ethos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone-dark);
}
.ethos-card {
  background: var(--white);
  padding: 52px 36px;
}
.ethos-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--stone-dark);
  line-height: 1;
  margin-bottom: 20px;
}
.ethos-card h3 {
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 700;
}
.ethos-card p { font-size: 0.88rem; line-height: 1.75; }

/* ── Hometown ─────────────────────────────────────────────────── */
.hometown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hometown-grid h2 { color: var(--black); margin-bottom: 24px; }
.hometown-info {
  background: var(--black);
  padding: 48px;
  color: var(--white);
}
.hometown-info h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 6px;
}
.hometown-info .sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 32px;
  display: block;
}
.hometown-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hometown-detail li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 12px;
}
.hometown-detail li::before { content: '—'; color: var(--sage-light); flex-shrink: 0; }

/* ── Suppliers ────────────────────────────────────────────────── */
.suppliers-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.supplier-group-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sage);
  margin-bottom: 16px;
  margin-top: 48px;
  display: block;
}
.supplier-group-title:first-child { margin-top: 0; }
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: var(--stone-dark);
}
.supplier-card {
  background: var(--stone);
  padding: 22px 20px;
  transition: background var(--transition);
}
.supplier-card:hover { background: var(--white); }
.supplier-prod {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 5px;
}
.supplier-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 3px;
}
.supplier-loc { font-size: 0.75rem; color: var(--light); }

/* ── Credentials ──────────────────────────────────────────────── */
.creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.creds-grid h2 { color: var(--white); margin-bottom: 20px; }
.creds-grid > div:first-child p { color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.cred-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 40px;
}
.cred-stat {
  background: var(--black);
  padding: 28px 24px;
}
.cred-n {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #A8BC8E;
  line-height: 1;
}
.cred-l { font-size: 0.68rem; color: rgba(255,255,255,0.4); margin-top: 6px; letter-spacing: 0.06em; }
.events-list { display: flex; flex-direction: column; gap: 1px; }
.event-row {
  background: rgba(255,255,255,0.04);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  border-left: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.event-row:hover { border-left-color: #A8BC8E; background: rgba(255,255,255,0.07); }
.event-n { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); }
.event-d { font-size: 0.75rem; color: rgba(255,255,255,0.38); margin-top: 3px; }
.event-y { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; color: #A8BC8E; white-space: nowrap; text-align: right; }

/* ── Local wherever we go ────────────────────────────────────── */
.regions-intro {
  max-width: 680px;
  margin-bottom: 64px;
}
.regions-intro h2 { color: var(--black); margin-bottom: 16px; }
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--stone-dark);
}
.region-card {
  background: var(--white);
  padding: 36px 32px 40px;
  transition: background var(--transition);
}
.region-card:hover { background: var(--stone); }
.region-flag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}
.region-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 6px;
}
.region-context {
  font-size: 0.75rem;
  color: var(--light);
  margin-bottom: 20px;
  font-style: italic;
}
.region-suppliers {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.region-supplier {
  padding: 9px 0;
  border-bottom: 1px solid var(--stone-dark);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: baseline;
}
.region-supplier:last-child { border-bottom: none; }
.rs-name { font-size: 0.88rem; font-weight: 500; color: var(--off-black); }
.rs-what { font-size: 0.68rem; color: var(--light); text-align: right; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--stone);
  border-top: 1px solid var(--stone-dark);
  padding: 72px 48px 36px;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.82rem; }
.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.82rem; color: var(--mid); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--black); }
.footer-base {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--stone-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-base p { font-size: 0.72rem; }
.footer-base a { font-size: 0.72rem; color: var(--mid); transition: color var(--transition); }
.footer-base a:hover { color: var(--black); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-img-col { height: 55vw; position: relative; }
  .hero-img-col img { position: absolute; }
  .hero-text-col { padding: 64px 32px; }
  .brand-row { grid-template-columns: 80px 1fr auto; gap: 24px; }
  .brand-num { font-size: 2.5rem; }
  .brand-row-desc { display: none; }
  .photo-grid-3 { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-grid-3 .p1 { grid-row: auto; grid-column: 1 / 3; height: 300px; }
  .photo-grid-3 .p4 { grid-column: 1 / 3; }
  .photo-grid-3 .p2, .photo-grid-3 .p3 { height: 200px; }
  .photo-grid-3 .p4 { height: 200px; }
  .photo-grid-2 { grid-template-rows: 340px; }
  .ethos-grid { grid-template-columns: 1fr 1fr; }
  .hometown-grid { grid-template-columns: 1fr; gap: 40px; }
  .creds-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--stone-dark);
    padding: 16px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
  }
  .nav-links.open a { padding: 14px 32px; border-bottom: 1px solid var(--stone-dark); }
  .nav-toggle { display: flex; }
  .section { padding: 72px 24px; }
  .intro { padding: 48px 24px; }
  .brand-row { grid-template-columns: 1fr auto; gap: 16px; padding: 28px 24px; }
  .brand-num { display: none; }
  .brand-section-header { grid-template-columns: 1fr; gap: 32px; }
  .suppliers-header { grid-template-columns: 1fr; gap: 32px; }
  .ethos-grid { grid-template-columns: 1fr; }
  .cred-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; align-items: flex-start; }
  .photo-grid-2 { grid-template-columns: 1fr; grid-template-rows: 280px 280px; }
  .hero-credentials { gap: 16px; }
}
@media (max-width: 480px) {
  .hero-text-col { padding: 48px 20px; }
  .photo-grid-3 .p1 { height: 220px; }
}
