:root {
  --sage: #808f7e;
  --cream: #faf5d8;
  --green: #364438;
  --deep-green: #374539;
  --mist: #c0c6be;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(54, 68, 56, 0.16);
  --soft-shadow: 0 12px 36px rgba(54, 68, 56, 0.11);
  --radius-large: 32px;
  --radius-medium: 22px;
  --radius-small: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--green);
  font-family: "Alegreya Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--cream);
  color: var(--green);
  padding: 10px 14px;
  z-index: 50;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(calc(100% - 28px), 1160px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 10px 9px 18px;
  border-radius: 999px;
  background: rgba(250, 245, 216, 0.93);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(116px, 14vw, 170px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  padding: 9px 13px;
  border-radius: 999px;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(128, 143, 126, 0.17);
  outline: none;
}

.nav .nav-cta {
  background: var(--green);
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 112px 16px 28px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(54, 68, 56, 0.18) 0%, rgba(54, 68, 56, 0.06) 36%, rgba(54, 68, 56, 0.58) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-panel {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 44px);
  border-radius: var(--radius-large);
  background: rgba(250, 245, 216, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(250, 245, 216, 0.82);
}

h1,
h2,
h3 {
  font-family: "The Seasons", "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
  font-weight: 600;
  color: var(--green);
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 9vw, 5.7rem);
  max-width: 820px;
  margin-inline: auto;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

p + p {
  margin-top: 16px;
}

.hero-copy {
  max-width: 560px;
  margin: 22px auto 0;
  font-size: clamp(1.08rem, 2.6vw, 1.35rem);
}

.micro-list {
  margin-top: 18px;
  color: var(--sage);
  font-size: 0.98rem;
  font-weight: 700;
}

.button-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Alegreya Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(54, 68, 56, 0.18);
  outline: none;
}

.button-primary {
  background: var(--green);
  color: var(--cream);
}

.button-secondary {
  background: transparent;
  color: var(--green);
  border-color: rgba(54, 68, 56, 0.25);
}

.button-light {
  background: var(--cream);
  color: var(--green);
}

.section {
  padding: clamp(70px, 11vw, 128px) 0;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.narrow {
  width: min(880px, calc(100% - 32px));
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.two-column-reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.copy-block p:not(.eyebrow) {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.copy-block .text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--green);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.image-card,
.video-card,
.service-card,
.step,
.faq,
.enquiry-form {
  box-shadow: var(--soft-shadow);
}

.image-card {
  overflow: hidden;
  border: 12px solid rgba(250, 245, 216, 0.86);
  border-radius: var(--radius-large);
  background: var(--mist);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.quote-card {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: rgba(128, 143, 126, 0.15);
  font-family: "The Seasons", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.16;
}

.section-heading {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 56px);
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.45);
}

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

.service-card div {
  padding: 24px;
}

.service-card p {
  margin-top: 10px;
  color: rgba(54, 68, 56, 0.82);
  font-size: 1rem;
}

.band {
  padding: clamp(54px, 9vw, 92px) 0;
  background: var(--sage);
  color: var(--cream);
}

.band h2,
.band p {
  color: var(--cream);
}

.band-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.occasion-list {
  font-weight: 700;
  font-size: clamp(1.12rem, 2vw, 1.34rem);
}

.media-section {
  background: linear-gradient(180deg, rgba(192, 198, 190, 0.24), rgba(250, 245, 216, 0));
}

.video-card {
  overflow: hidden;
  border: 12px solid rgba(250, 245, 216, 0.86);
  border-radius: var(--radius-large);
  background: var(--green);
}

.video-card video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--mist);
  box-shadow: 0 8px 20px rgba(54, 68, 56, 0.08);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.process-section {
  background: rgba(192, 198, 190, 0.2);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  padding: 26px;
  border-radius: var(--radius-medium);
  background: rgba(250, 245, 216, 0.72);
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-weight: 700;
}

.step p {
  margin-top: 10px;
  font-size: 1rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--sage);
}

.faq[open] summary::after {
  content: "–";
}

.faq p {
  padding: 0 24px 22px;
}

.contact-section {
  padding: clamp(70px, 10vw, 116px) 0;
  background: var(--green);
  color: var(--cream);
}

.contact-section h2,
.contact-section h3,
.contact-section p,
.contact-section label,
.contact-section a {
  color: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.footer-logo {
  width: min(260px, 74vw);
  margin-bottom: 28px;
  filter: brightness(0) saturate(100%) invert(93%) sepia(17%) saturate(420%) hue-rotate(354deg) brightness(107%) contrast(96%);
}

.contact-copy p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 520px;
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

.contact-actions {
  justify-content: flex-start;
}

.social-link {
  font-weight: 700;
  text-underline-offset: 6px;
}

.email-line {
  font-weight: 700;
  overflow-wrap: anywhere;
}

.enquiry-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 5vw, 36px);
  border: 1px solid rgba(250, 245, 216, 0.18);
  border-radius: var(--radius-large);
  background: rgba(250, 245, 216, 0.1);
}

.enquiry-form h3 {
  color: var(--cream);
  margin-bottom: 4px;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(250, 245, 216, 0.28);
  border-radius: 14px;
  background: rgba(250, 245, 216, 0.94);
  color: var(--green);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(250, 245, 216, 0.28);
  border-color: var(--cream);
}

.form-submit {
  justify-self: start;
  border: none;
  margin-top: 4px;
}

.form-note {
  color: rgba(250, 245, 216, 0.78) !important;
  font-size: 0.95rem !important;
}

.site-footer {
  padding: 24px 0;
  background: #29352c;
  color: rgba(250, 245, 216, 0.82);
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.site-footer a {
  color: var(--cream);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .gallery-item img,
  .button {
    transition: none;
  }
}

@media (max-width: 960px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

  .two-column,
  .two-column-reverse,
  .band-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 200px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), 1160px);
    padding: 8px 8px 8px 12px;
  }

  .brand img {
    width: 112px;
  }

  .nav .nav-cta {
    padding: 9px 12px;
  }

  .hero {
    padding: 96px 12px 18px;
    min-height: 94svh;
  }

  .hero-image img {
    object-position: center top;
  }

  .hero-panel {
    padding: 24px 18px;
    border-radius: 26px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.95rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .button-row,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .cards-grid,
  .steps-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 275px;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-card div,
  .step {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
