/* ================================================================
   SEAMS AND DREAMS — GLOBAL DESIGN SYSTEM
   Shared colours, typography, spacing and reusable components.
================================================================ */

:root {
  --ink: #172629;
  --teal-950: #083a40;
  --teal-800: #0b5962;
  --teal-600: #078a9b;
  --aqua: #17a8ba;
  --red: #c8102e;
  --orange: #ff641a;
  --gold: #f1b51c;
  --cream: #fff9f1;
  --paper: #ffffff;
  --mist: #edf5f3;
  --line: #d7e3e0;
  --shadow: 0 18px 50px rgba(8, 58, 64, 0.14);
  --radius: 1.25rem;
  --max-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--teal-800); text-underline-offset: 0.18em; }
a:hover { color: var(--red); }
button, input, textarea, select { font: inherit; }

h1, h2, h3 {
  margin: 0 0 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 { font-size: clamp(2.35rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.1rem; }

.container { width: min(calc(100% - 2rem), var(--max-width)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 790px); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--mist { background: var(--mist); }
.section--cream { background: var(--cream); }
.section--dark { color: white; background: var(--teal-950); }
.eyebrow {
  margin-bottom: 0.7rem;
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.lead { max-width: 760px; font-size: clamp(1.08rem, 1.6vw, 1.3rem); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .7rem 1rem; background: white; }
.skip-link:focus { top: 1rem; }

/* ================================================================
   HEADER AND PRIMARY NAVIGATION
================================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(8,58,64,.1);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}

.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { flex: 0 0 auto; }
.brand img { width: 285px; height: auto; max-height: 72px; object-fit: contain; }
.nav-toggle { display: none; border: 0; border-radius: .6rem; padding: .65rem .8rem; color: white; background: var(--teal-950); cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; }
.site-nav ul { display: flex; align-items: center; gap: .2rem; margin: 0; padding: 0; list-style: none; }
.site-nav a { display: block; padding: .7rem .65rem; color: var(--ink); font-size: .91rem; font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--red); }
.site-nav .nav-contact { margin-left: .35rem; border-radius: 999px; padding-inline: 1rem; color: white; background: var(--teal-800); }
.site-nav .nav-contact:hover { color: white; background: var(--red); }

/* ================================================================
   FULL-COLOUR HEROES WITH SUBTLE KEN BURNS MOTION
================================================================ */

.hero { position: relative; min-height: clamp(520px, 70vh, 760px); overflow: hidden; background: var(--teal-950); }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: ken-burns 18s ease-in-out alternate infinite; }
.hero__content { position: relative; z-index: 2; min-height: inherit; display: flex; align-items: flex-end; padding-bottom: clamp(2rem, 7vw, 5rem); }
.hero__panel { width: min(700px, 90%); padding: clamp(1.5rem, 4vw, 3.2rem); color: white; background: rgba(8,58,64,.94); box-shadow: var(--shadow); border-left: 8px solid var(--orange); }
.hero__panel p { max-width: 620px; font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.hero__panel p:last-child { margin-bottom: 0; }
.hero--home .hero__media img { object-position: 62% center; }
.hero--alterations .hero__media img { object-position: center 38%; }
.hero--weddings .hero__media img { object-position: center center; }
.hero--dry .hero__media img { object-position: center center; }
.hero--proms .hero__media img { object-position: center 28%; }

@keyframes ken-burns {
  from { transform: scale(1.01) translate3d(0,0,0); }
  to { transform: scale(1.09) translate3d(-1%, -1%, 0); }
}

/* ================================================================
   BUTTONS, NOTICES AND CALLS TO ACTION
================================================================ */

.button { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; min-height: 48px; border: 2px solid transparent; border-radius: 999px; padding: .75rem 1.25rem; font-weight: 800; text-decoration: none; cursor: pointer; }
.button--primary { color: white; background: var(--red); }
.button--primary:hover { color: white; background: #a80c26; }
.button--secondary { color: var(--teal-950); background: var(--gold); }
.button--secondary:hover { color: var(--teal-950); background: #ffd052; }
.button--outline { border-color: currentColor; color: var(--teal-800); background: transparent; }
.button--outline:hover { color: white; background: var(--teal-800); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.button-row--center { justify-content: center; }
.space-top { margin-top: 1.5rem; }
.space-top-lg { margin-top: 2rem; }
.notice { padding: 1.35rem 1.5rem; border-left: 6px solid var(--gold); border-radius: .35rem var(--radius) var(--radius) .35rem; background: #fff4c9; }
.notice strong { color: var(--teal-950); }
.walk-in-strip { padding: 1.25rem 0; color: white; background: var(--teal-800); }
.walk-in-strip .container { display: flex; align-items: center; justify-content: center; gap: .8rem; text-align: center; }
.walk-in-strip strong { color: #ffe06b; }

/* ================================================================
   CARDS, SERVICE GRIDS AND CONTENT LAYOUTS
================================================================ */

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards { margin-top: 2.5rem; }
.card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 10px 28px rgba(8,58,64,.08); }
.card__image { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-card .card__image {
  width: 100%;
  height: clamp(205px, 19vw, 240px);
  max-height: 240px;
  object-fit: cover;
}
.card__body { padding: 1.5rem; }
.card__body p:last-child { margin-bottom: 0; }
.card__link { display: inline-block; margin-top: .4rem; font-weight: 800; }
.service-card { border-top: 7px solid var(--teal-600); }
.service-card:nth-child(2) { border-color: var(--orange); }
.service-card:nth-child(3) { border-color: var(--red); }
.service-card:nth-child(4) { border-color: var(--gold); }
.split { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--reverse { grid-template-columns: .92fr 1.08fr; }
.split__image { width: 100%; min-height: 420px; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-list { display: grid; gap: .75rem; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 1.8rem; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-600); font-weight: 900; }

/* ================================================================
   PRICING EXPLANATION
================================================================ */

.pricing { position: relative; overflow: hidden; }
.pricing::after { content: "1,800+"; position: absolute; right: -1rem; bottom: -4rem; color: rgba(255,255,255,.06); font: 800 clamp(7rem, 18vw, 15rem)/1 Georgia, serif; }
.pricing .container { position: relative; z-index: 1; }
.pricing__facts { margin-top: 2rem; }
.pricing__fact { padding: 1.5rem; border-top: 4px solid var(--orange); background: rgba(255,255,255,.08); }
.pricing__fact strong { display: block; margin-bottom: .4rem; color: #ffda58; font-size: 1.08rem; }

/* ================================================================
   IMAGE GALLERIES AND INSTAGRAM
================================================================ */

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 150px; gap: .75rem; margin-top: 2.5rem; }
.gallery figure { position: relative; grid-column: span 4; grid-row: span 2; overflow: hidden; margin: 0; border-radius: 1rem; }
.gallery figure:nth-child(1), .gallery figure:nth-child(5) { grid-column: span 8; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.035); }
.instagram-shell {
  width: min(100%, 640px);
  aspect-ratio: 4 / 3;
  margin: 2rem auto 0;
  overflow: hidden;
}
.instagram-frame { display: block; width: 100%; height: 100%; border: 0; overflow: hidden; background: white; }

/* ================================================================
   FAQ AND TIMELINE
================================================================ */

.faq { display: grid; gap: .8rem; margin-top: 2rem; }
.faq details { border: 1px solid var(--line); border-radius: .8rem; background: white; }
.faq summary { padding: 1rem 1.2rem; color: var(--teal-950); font-weight: 800; cursor: pointer; }
.faq details p { padding: 0 1.2rem 1.1rem; margin: 0; }
.timeline { position: relative; display: grid; gap: 1rem; margin-top: 2rem; padding-left: 2.25rem; }
.timeline::before { content: ""; position: absolute; left: .55rem; top: .5rem; bottom: .5rem; width: 3px; background: linear-gradient(var(--orange), var(--aqua)); }
.timeline__item { position: relative; padding: 1.2rem 1.4rem; border-radius: 1rem; background: white; box-shadow: 0 8px 24px rgba(8,58,64,.07); }
.timeline__item::before { content: ""; position: absolute; left: -2.18rem; top: 1.45rem; width: 15px; height: 15px; border: 4px solid white; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 2px var(--red); }
.timeline__date { color: var(--red); font-weight: 900; }

/* ================================================================
   CONTACT FORM AND VISITING INFORMATION
================================================================ */

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact-card { padding: 1.7rem; border-radius: var(--radius); color: white; background: var(--teal-950); }
.contact-card a { color: #ffe06b; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: .35rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: var(--teal-950); font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #9fb8b4; border-radius: .6rem; padding: .8rem .9rem; color: var(--ink); background: white; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 3px solid rgba(23,168,186,.25); border-color: var(--teal-600); }
.form-field textarea { min-height: 170px; resize: vertical; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 1.6em; margin-top: .8rem; font-weight: 700; }
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: center; margin-top: 2rem; }
.partner-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 3;
  object-fit: contain;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: .7rem;
  background: white;
  filter: none !important;
  mix-blend-mode: normal;
  opacity: 1;
}

/* ================================================================
   WED2B HINCKLEY — WEDDING-DRESS RECOMMENDATION
================================================================ */

.wed2b-recommendation { padding-top: 0; background: var(--cream); }
.wed2b-card {
  display: grid;
  grid-template-columns: minmax(240px, .75fr) 1.25fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 36px rgba(8,58,64,.1);
}
.wed2b-card__logo { display: block; border-radius: .7rem; }
.wed2b-card__logo:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.wed2b-card__logo img { display: block; width: 100%; height: auto; border-radius: .7rem; }
.wed2b-card__content h2 { margin-bottom: .7rem; }
.wed2b-card__content .button { margin-top: .5rem; }

/* ================================================================
   AWARDS — CONSISTENT CARDS FOR DIFFERENT AWARDING BODIES
================================================================ */

.award-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.award-card { position: relative; min-height: 245px; padding: 1.5rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 10px 28px rgba(8,58,64,.08); }
.award-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: var(--orange); }
.award-card:nth-child(2)::before { background: var(--aqua); }
.award-card:nth-child(3)::before { background: var(--red); }
.award-card:nth-child(4)::before { background: var(--gold); }
.award-card__year { display: block; margin-bottom: 1rem; color: var(--red); font-size: .88rem; font-weight: 900; letter-spacing: .12em; }
.award-card__source { display: block; margin-top: 1rem; color: var(--teal-800); font-weight: 800; }

/* ================================================================
   FOOTER
================================================================ */

.site-footer { padding: 3rem 0 1.5rem; color: white; background: #052f34; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr; gap: 2rem; }
.footer-logo { width: min(320px, 100%); height: auto; max-height: 100px; margin-bottom: 1rem; object-fit: contain; object-position: left center; }
.footer-directions { min-height: 40px; padding: .45rem .9rem; color: #ffe06b; font-size: .9rem; }
.footer-directions:hover { color: var(--teal-950); background: #ffe06b; }
.footer-map-links { gap: .5rem; margin-top: .8rem; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links a { color: white; }
.social-links { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social-link { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: white; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.social-link:hover { border-color: var(--gold); color: var(--teal-950); background: var(--gold); }
.social-link svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.social-link--facebook svg { fill: currentColor; stroke: none; }
.footer-bottom { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.18); font-size: .9rem; }

/* ================================================================
   RESPONSIVE ADAPTATION
================================================================ */

@media (max-width: 1040px) {
  .brand img { width: 225px; }
  .site-nav a { padding-inline: .42rem; font-size: .84rem; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .award-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .header-inner { min-height: 76px; }
  .brand img { width: 195px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; padding: .8rem 1rem 1.2rem; background: white; box-shadow: 0 16px 30px rgba(8,58,64,.15); }
  .site-nav.is-open { display: block; }
  .site-nav ul { display: grid; }
  .site-nav a { padding: .65rem .8rem; font-size: 1rem; }
  .site-nav .nav-contact { margin: .3rem 0 0; text-align: center; }
  .hero { min-height: auto; overflow: visible; background: white; }
  .hero__media { position: relative; height: 52vh; min-height: 350px; }
  .hero__content { display: block; min-height: 0; padding: 0; }
  .hero__panel { width: 100%; }
  .split, .split--reverse, .contact-layout { grid-template-columns: 1fr; }
  .split--reverse .split__image { order: 2; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .gallery figure, .gallery figure:nth-child(1), .gallery figure:nth-child(5) { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wed2b-card { grid-template-columns: 1fr; text-align: center; }
  .wed2b-card__logo { width: min(100%, 460px); margin-inline: auto; }
}

@media (max-width: 560px) {
  .section { padding-block: 3.5rem; }
  .grid--2, .grid--3, .grid--4, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 120px; }
  .gallery figure, .gallery figure:nth-child(1), .gallery figure:nth-child(5) { grid-column: 1 / -1; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .award-grid { grid-template-columns: 1fr; }
  .instagram-shell { width: min(100%, 420px); }
  .walk-in-strip .container { align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media img { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
