:root {
  --ink: #17120f;
  --paper: #f7f1e8;
  --paper-deep: #e6d6c2;
  --muted: #70665d;
  --line: rgba(23, 18, 15, 0.16);
  --gold: #c99a48;
  --red: #9a2e20;
  --green: #566f64;
  --white: #fffaf3;
  --radius: 8px;
  --shadow: 0 26px 70px rgba(23, 18, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(255, 250, 243, 0.16);
  color: var(--white);
  background: rgba(23, 18, 15, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 250, 243, 0.28);
  border-radius: 50%;
  color: var(--gold);
}

.brand strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 24px;
  color: rgba(255, 250, 243, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 243, 0.25);
  border-radius: var(--radius);
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 8px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.86), rgba(23, 18, 15, 0.34) 54%, rgba(23, 18, 15, 0.82)),
    linear-gradient(180deg, rgba(23, 18, 15, 0.18), rgba(23, 18, 15, 0.78));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 76px);
  align-content: center;
  width: min(1040px, 88vw);
  padding: 9vh 0;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(4.5rem, 12vw, 10rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-inner > p {
  max-width: 580px;
  color: rgba(255, 250, 243, 0.82);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 900;
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.button.glass {
  border: 1px solid rgba(255, 250, 243, 0.36);
  color: var(--white);
  background: rgba(255, 250, 243, 0.08);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
}

.button.outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.hero-card {
  position: absolute;
  right: 5vw;
  bottom: 5vh;
  z-index: 3;
  width: min(310px, 82vw);
  padding: 22px;
  border: 1px solid rgba(255, 250, 243, 0.22);
  border-radius: var(--radius);
  background: rgba(23, 18, 15, 0.58);
  backdrop-filter: blur(14px);
}

.hero-card span,
.hero-card strong,
.hero-card a {
  display: block;
}

.hero-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  margin: 12px 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-card a {
  color: rgba(255, 250, 243, 0.78);
  font-weight: 800;
}

.intro-band,
.section,
.contact-panel {
  width: min(1120px, 88vw);
  margin: 0 auto;
  scroll-margin-top: 98px;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  transform: translateY(-42px);
  box-shadow: var(--shadow);
}

.intro-band div {
  padding: 28px;
  background: var(--white);
}

.intro-band span {
  color: var(--red);
  font-weight: 900;
}

.intro-band strong {
  display: block;
  margin: 22px 0 8px;
  font-size: 1.1rem;
}

.intro-band p,
.service-list p,
.team-grid p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: 72px 0;
}

.section-kicker {
  margin-bottom: 34px;
}

.section-kicker .button {
  margin-top: 18px;
}

.gallery-page {
  padding-top: 1px;
}

.gallery-hero {
  width: min(1120px, 90vw);
  margin: 46px auto 0;
  padding: 72px 0 26px;
}

.gallery-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 6.8rem);
  line-height: 0.92;
}

.gallery-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.story-grid figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.story-grid .story-large {
  grid-row: span 2;
}

.story-grid figure:nth-child(4) {
  grid-column: span 2;
}

.story-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.story-grid figure:hover img {
  transform: scale(1.045);
}

.story-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(23, 18, 15, 0.68);
  font-weight: 900;
}

.story-large figcaption span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prewedding-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 14px;
}

.prewedding-grid figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.prewedding-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.prewedding-grid figure:hover img {
  transform: scale(1.045);
}

.prewedding-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(23, 18, 15, 0.68);
  font-weight: 900;
}

.prewedding-grid figure.wide {
  grid-column: span 2;
}

.prewedding-grid figure.tall {
  grid-row: span 2;
}

.full-prewedding-grid {
  grid-auto-rows: 320px;
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: minmax(210px, 0.35fr) minmax(0, 0.65fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-list span {
  font-size: 1.2rem;
  font-weight: 900;
}

.team-grid,
.review-grid,
.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.team-grid article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.team-grid img {
  width: 150px;
  height: 190px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center top;
}

.crew-panel {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.62);
}

.crew-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.crew-panel-head span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crew-panel-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.team-roster {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.team-roster article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.team-roster article > span,
.team-roster article > img {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.team-roster article > span {
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.team-roster article > img {
  object-fit: cover;
  object-position: center 22%;
}

.team-roster h3 {
  margin: 0 0 6px;
}

.team-roster p {
  margin: 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-grid span,
.journal-grid span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid article {
  min-height: 240px;
  padding: 26px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.review-grid strong {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.review-grid p {
  margin: 24px 0;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.55;
}

.review-grid span {
  color: rgba(255, 250, 243, 0.72);
  font-weight: 900;
}

.journal-grid {
  grid-template-columns: repeat(3, 1fr);
}

.journal-grid article,
.journal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.journal-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.journal-grid span,
.journal-grid h3 {
  display: block;
  margin-right: 20px;
  margin-left: 20px;
}

.journal-grid span {
  margin-top: 20px;
}

.journal-grid h3 {
  margin-bottom: 22px;
}

.journal-card:hover img,
.journal-card:focus-visible img {
  transform: scale(1.035);
}

.journal-card img {
  transition: transform 640ms ease;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.blog-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.blog-hero-meta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(23, 18, 15, 0.68);
  backdrop-filter: blur(12px);
}

.blog-hero-meta span {
  color: rgba(255, 250, 243, 0.74);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-body {
  width: min(860px, 88vw);
  margin: 34px auto 0;
  padding-bottom: 30px;
}

.blog-body h3 {
  margin-top: 30px;
  font-size: 1.35rem;
}

.blog-body p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
}

.blog-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 72px;
  padding: 44px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
}

.contact-panel .eyebrow,
.contact-panel p {
  color: rgba(255, 250, 243, 0.78);
}

.contact-panel h2 {
  margin-bottom: 16px;
}

.office-map {
  display: grid;
  gap: 12px;
  width: min(560px, 100%);
  margin-top: 28px;
}

.office-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(23, 18, 15, 0.22);
}

.office-map a {
  width: fit-content;
  border-bottom: 1px solid rgba(255, 250, 243, 0.52);
  color: var(--white);
  font-weight: 900;
}

.enquiry {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 250, 243, 0.22);
  border-radius: var(--radius);
  background: rgba(23, 18, 15, 0.22);
  backdrop-filter: blur(12px);
}

.enquiry label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.enquiry input,
.enquiry textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 243, 0.24);
  border-radius: var(--radius);
  padding: 12px 12px;
  color: var(--white);
  background: rgba(255, 250, 243, 0.06);
  font: inherit;
}

.enquiry input:focus,
.enquiry textarea:focus {
  outline: 3px solid rgba(201, 154, 72, 0.35);
  border-color: rgba(201, 154, 72, 0.72);
}

.enquiry-actions {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.9fr;
  gap: 10px;
  margin-top: 6px;
}

.enquiry-note {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 250, 243, 0.78);
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 5vw;
  color: rgba(255, 250, 243, 0.7);
  background: var(--ink);
}

.footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

.footer span:nth-child(2) {
  text-align: right;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 76px;
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 250, 243, 0.18);
    border-radius: var(--radius);
    background: rgba(23, 18, 15, 0.96);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 250, 243, 0.12);
  }

  .intro-band,
  .story-grid,
  .prewedding-grid,
  .team-grid,
  .team-roster,
  .review-grid,
  .journal-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-auto-rows: 360px;
  }

  .story-grid .story-large,
  .story-grid figure:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .prewedding-grid {
    grid-auto-rows: 360px;
  }

  .prewedding-grid figure.wide,
  .prewedding-grid figure.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 3;
    width: min(88vw, 420px);
    margin: -34px auto 42px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer span:nth-child(2) {
    text-align: left;
  }

  .enquiry-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand strong {
    max-width: 210px;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6.8rem);
  }

  h2 {
    font-size: clamp(2.3rem, 13vw, 4.4rem);
  }

  .hero-inner {
    min-height: 76svh;
  }

  .button {
    width: 100%;
  }

  .team-grid article {
    grid-template-columns: 1fr;
  }

  .crew-panel {
    padding: 16px;
  }

  .crew-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-roster article {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .team-roster article > span {
    width: 52px;
    height: 52px;
  }

  .team-grid img {
    width: 100%;
    height: 320px;
  }

  .contact-panel {
    padding: 28px;
  }

  .blog-hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
