:root {
  /* Abermaw heritage palette — edit these values to retheme the site. */
  --navy: #101c2b;
  --navy-deep: #08131f;
  --navy-soft: #20354a;
  --gold: #ae8645;
  --gold-deep: #88642f;
  --gold-light: #dcc18c;
  --gold-muted: #c8b27f;
  --cream: #faf6ec;
  --cream-deep: #eee5d6;
  --paper: #f5efe4;
  --paper-deep: #e7ddca;
  --muted: #5d6670;
  --muted-light: #78818a;

  /* Semantic aliases used throughout the components. */
  --ink: var(--navy);
  --ink-soft: var(--navy-soft);
  --moss: var(--navy-soft);
  --sage: var(--muted-light);
  --clay: var(--gold-deep);
  --ochre: var(--gold);
  --line: rgba(16, 28, 43, 0.18);
  --line-gold: rgba(174, 134, 69, 0.38);
  --serif: Baskerville, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --content: min(1320px, calc(100vw - 8rem));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 8vw;
  background:
    linear-gradient(135deg, rgba(8, 19, 31, .92), rgba(8, 19, 31, .82)),
    url("assets/abermaw-hero.webp") center/cover;
}

.thank-you-card {
  max-width: 760px;
  padding: clamp(2rem, 6vw, 4.5rem);
  color: var(--cream);
  background: rgba(8, 19, 31, .9);
  border: 1px solid rgba(220, 193, 140, .36);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.thank-you-card h1 {
  color: var(--cream);
}

.thank-you-card p:not(.eyebrow) {
  color: rgba(250, 246, 236, .78);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--cream);
  background: var(--clay);
}

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 112px;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  color: var(--cream);
  background: linear-gradient(180deg, rgba(8, 19, 31, 0.94), rgba(8, 19, 31, 0.76));
  border-bottom: 1px solid var(--line-gold);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition:
    height 0.4s var(--ease),
    color 0.4s,
    background 0.4s,
    box-shadow 0.4s;
}

.site-header.is-scrolled {
  height: 82px;
  color: var(--cream);
  background: rgba(8, 19, 31, 0.97);
  box-shadow: 0 14px 32px rgba(8, 19, 31, 0.18);
  border-bottom-color: var(--line-gold);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1;
}

.brand-mark {
  display: block;
  width: 51px;
  height: 51px;
  color: var(--gold-light);
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.brand-mark .brand-wave {
  stroke-width: 0.8;
  opacity: 0.75;
}

.brand-type {
  display: grid;
  gap: 0.28rem;
}

.brand-type > span {
  font-family: var(--serif);
  font-size: 1.42rem;
  letter-spacing: 0.04em;
}

.brand-type small {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 2.8vw, 3.2rem);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 0.8rem 0;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  bottom: 0.48rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 1.2rem;
  padding: 0 1.2rem;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  transition:
    color 0.25s,
    background 0.25s;
}

.nav-cta:hover {
  color: var(--navy-deep);
  background: var(--gold-light);
}

.is-scrolled .nav-cta:hover {
  color: var(--navy-deep);
  background: var(--gold-light);
}

.menu-toggle {
  position: relative;
  z-index: 110;
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--navy-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.62) contrast(1.06) brightness(0.88);
  animation: heroEnter 1.7s var(--ease) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 19, 31, 0.9) 0%, rgba(8, 19, 31, 0.64) 40%, rgba(8, 19, 31, 0.18) 78%),
    linear-gradient(0deg, rgba(8, 19, 31, 0.62) 0%, transparent 43%),
    linear-gradient(180deg, rgba(8, 19, 31, 0.34) 0%, transparent 26%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 72vw);
  margin: 0 0 11vh 8vw;
}

.eyebrow {
  margin: 0 0 1.8rem;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold-light);
}

.hero-eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 750px;
  margin-bottom: 1.8rem;
  font-size: clamp(4.4rem, 7.7vw, 8.4rem);
  letter-spacing: -0.052em;
}

h1 em,
h2 em {
  font-weight: 400;
  color: var(--gold-light);
}

.hero-copy {
  max-width: 580px;
  margin-bottom: 2.3rem;
  color: rgba(250, 246, 236, 0.86);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 2.2rem;
  padding: 0 1.5rem;
  border: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.28s,
    background 0.28s,
    transform 0.28s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--navy-deep);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button-light:hover {
  color: var(--gold-light);
  background: var(--navy-deep);
  border-color: var(--gold);
}

.button-dark {
  color: var(--navy-deep);
  background: var(--gold);
  border-color: var(--gold);
}

.button-dark:hover {
  color: var(--cream);
  background: var(--navy);
  border-color: var(--navy);
}

.text-link {
  position: relative;
  display: inline-flex;
  padding: 0.25rem 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: transform 0.3s var(--ease);
  transform-origin: left;
}

.text-link:hover::after {
  transform: scaleX(0.35);
}

.text-link-light {
  color: var(--gold-light);
}

.hero-note {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 3.4rem;
  display: grid;
  padding: 1rem 0;
  color: var(--gold-light);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  line-height: 1;
  text-align: center;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.hero-note span {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-note strong {
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 4rem;
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 64px;
  height: 1px;
  overflow: hidden;
  background: rgba(220, 193, 140, 0.32);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  content: "";
  animation: cue 2s ease-in-out infinite;
}

.section-pad {
  padding: 9.5rem max(4rem, calc((100vw - 1320px) / 2));
}

.introduction {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 4.6fr;
  gap: 5vw;
  overflow: hidden;
}

.intro-ornament {
  position: absolute;
  top: -9rem;
  right: -5rem;
  width: 31rem;
  color: var(--gold);
  opacity: 0.22;
}

.intro-ornament svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.6;
}

.section-kicker {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker span {
  color: var(--gold-deep);
}

.section-kicker p {
  padding-left: 1.4rem;
  border-left: 1px solid var(--line);
}

.intro-copy {
  position: relative;
  z-index: 1;
  max-width: 1050px;
}

.intro-copy h2 {
  max-width: 970px;
  margin-bottom: 4.5rem;
  font-size: clamp(3rem, 5.1vw, 6rem);
  letter-spacing: -0.048em;
}

.intro-copy h2 em {
  color: var(--gold-deep);
}

.intro-columns {
  display: grid;
  max-width: 800px;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin: 0 0 2rem 18%;
  color: var(--muted);
}

.intro-columns p {
  margin-bottom: 0;
}

.intro-copy > .text-link {
  margin-left: 18%;
}

.craft {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(4rem, 9vw, 10rem);
  background: var(--cream-deep);
}

.craft-image-wrap {
  position: relative;
}

.craft-image-wrap::before {
  position: absolute;
  z-index: 0;
  top: -2.2rem;
  right: -2.2rem;
  width: 36%;
  height: 36%;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  content: "";
}

.craft-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02);
}

.image-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.image-caption small {
  color: var(--muted);
}

.craft-content h2,
.work-heading h2,
.process h2,
.contact h2 {
  font-size: clamp(3.1rem, 5.2vw, 6rem);
  letter-spacing: -0.05em;
}

.craft-content h2 {
  max-width: 700px;
  margin: 2.5rem 0;
}

.craft-lead {
  max-width: 620px;
  margin-bottom: 3.2rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.55;
}

.services {
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 1.3rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  padding-top: 0.25rem;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.service h3 {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.service p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.work {
  background: var(--cream);
}

.work-heading {
  display: grid;
  grid-template-columns: 1fr 2.5fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.work-heading h2 {
  margin-bottom: 0;
}

.work-heading > p {
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.project-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
}

.project-image {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}

.project-tall .project-image {
  aspect-ratio: 0.78;
}

.project-wide .project-image {
  aspect-ratio: 1.44;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.02);
  transition: transform 0.9s var(--ease);
}

.project:hover .project-image img {
  transform: scale(1.035);
}

.project-arrow {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  color: var(--navy-deep);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 1.1rem;
  transform: translateY(5rem);
  transition: transform 0.45s var(--ease);
}

.project:hover .project-arrow {
  transform: translateY(0);
}

.project-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.4rem;
}

.project-meta p,
.project-meta > span {
  color: var(--gold-deep);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-meta p {
  margin-bottom: 0.35rem;
}

.project-meta h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.project-meta > span {
  flex: 0 0 auto;
  padding-bottom: 0.38rem;
  color: var(--muted);
  text-align: right;
}

.process {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(480px, 1.1fr);
  gap: 9vw;
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 12%, rgba(174, 134, 69, 0.09), transparent 28rem),
    var(--navy-deep);
}

.section-kicker-light p {
  border-color: var(--line-gold);
}

.section-kicker-light span {
  color: var(--gold-light);
}

.process h2 {
  max-width: 620px;
  margin: 3rem 0 0;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line-gold);
}

.process-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 1.5rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line-gold);
}

.process-list .step {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.process-list h3 {
  margin-bottom: 0.55rem;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
}

.process-list p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(250, 246, 236, 0.66);
  font-size: 0.9rem;
}

.testimonial {
  position: relative;
  display: grid;
  min-height: 600px;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background: var(--gold-muted);
}

.testimonial::before,
.testimonial::after {
  position: absolute;
  width: 21rem;
  height: 21rem;
  border: 1px solid rgba(136, 100, 47, 0.38);
  border-radius: 50%;
  content: "";
}

.testimonial::before {
  top: -12rem;
  left: -9rem;
}

.testimonial::after {
  right: -7rem;
  bottom: -13rem;
}

.quote-mark {
  position: absolute;
  top: 4rem;
  color: rgba(136, 100, 47, 0.34);
  font-family: var(--serif);
  font-size: 17rem;
  line-height: 1;
}

.testimonial blockquote {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial blockquote > p {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.testimonial footer {
  display: grid;
  gap: 0.4rem;
  margin-top: 2.5rem;
}

.testimonial footer span,
.testimonial footer small {
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.testimonial footer small {
  color: rgba(16, 28, 43, 0.58);
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(4rem, 9vw, 10rem);
  background: var(--paper-deep);
}

.contact-copy h2 {
  max-width: 630px;
  margin: 2.8rem 0;
}

.contact-copy > p {
  max-width: 530px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  justify-items: start;
  gap: 0.65rem;
  margin-top: 2.5rem;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.contact-details a {
  border-bottom: 1px solid var(--line);
}

.enquiry-form {
  align-self: start;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--cream);
  border-top: 3px solid var(--gold);
  box-shadow: 0 30px 70px rgba(8, 19, 31, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.7rem;
}

.enquiry-form label > span {
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.enquiry-form label > small {
  color: var(--muted-light);
  font-size: 0.66rem;
  line-height: 1.5;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-width: 0;
  padding: 0.55rem 0 0.75rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(16, 28, 43, 0.28);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
}

.enquiry-form textarea {
  resize: vertical;
}

.captcha-panel {
  display: grid;
  gap: 0.85rem;
  margin: 0.3rem 0 1.7rem;
  padding: 1rem;
  background: rgba(174, 134, 69, 0.08);
  border: 1px solid rgba(174, 134, 69, 0.28);
}

.captcha-panel > span {
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.enquiry-form input[aria-invalid="true"],
.enquiry-form select[aria-invalid="true"],
.enquiry-form textarea[aria-invalid="true"] {
  border-color: #a54232;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 0.6rem;
}

.form-footer p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--muted-light);
  font-size: 0.66rem;
}

.form-status {
  min-height: 1.4em;
  margin: 1rem 0 0;
  color: var(--moss);
  font-size: 0.8rem;
}

.site-footer {
  padding: 5rem 4rem 2rem;
  color: var(--cream);
  background: var(--navy-deep);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line-gold);
}

.footer-brand .brand-mark {
  width: 60px;
  height: 60px;
}

.footer-top > p {
  max-width: 380px;
  margin: 0;
  color: rgba(250, 246, 236, 0.66);
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.5;
}

.back-to-top {
  justify-self: end;
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.back-to-top span {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin-left: 1rem;
  transition: background 0.2s;
}

.back-to-top:hover span {
  color: var(--navy-deep);
  background: var(--gold-light);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 2rem;
  color: rgba(250, 246, 236, 0.5);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:nth-child(2) {
  text-align: center;
}

.footer-bottom div {
  display: flex;
  justify-content: flex-end;
  gap: 1.8rem;
}

.footer-bottom a:hover {
  color: var(--cream);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}

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

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cue {
  0% {
    transform: translateX(-100%);
  }
  55%,
  100% {
    transform: translateX(100%);
  }
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.trust-strip {
  display: grid;
  width: var(--content);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -2rem auto 0;
  background: var(--line-gold);
  border: 1px solid var(--line-gold);
}

.trust-strip article {
  min-height: 170px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--cream);
  background: var(--navy-deep);
}

.trust-strip strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.trust-strip p {
  max-width: 26rem;
  margin: 0;
  color: rgba(250, 246, 236, 0.74);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
}

.section-lead {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.35;
}

.heritage-list,
.best-fit-card ul,
.heritage-bullets {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.heritage-list span,
.heritage-bullets li {
  position: relative;
  padding: 0.9rem 1rem 0.9rem 2.2rem;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
}

.heritage-list span::before,
.heritage-bullets li::before {
  position: absolute;
  top: 1.05rem;
  left: 0.9rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.quote-process {
  background:
    radial-gradient(circle at 14% 16%, rgba(220, 193, 140, 0.12), transparent 26rem),
    var(--cream);
}

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

.quote-step {
  min-height: 240px;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  background: #fffdf8;
  border: 1px solid var(--line);
}

.quote-step > span {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.quote-step p {
  color: var(--muted);
}

.best-fit {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(8, 19, 31, 0.98), rgba(16, 28, 43, 0.94)),
    url("assets/coastal-cottage.webp") center/cover;
}

.best-fit-card {
  display: grid;
  width: var(--content);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 6vw, 7rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(8, 19, 31, 0.54);
  border: 1px solid rgba(220, 193, 140, 0.38);
}

.best-fit-card .eyebrow,
.best-fit-card h2 {
  color: var(--gold-light);
}

.best-fit-card p,
.best-fit-card li {
  color: rgba(250, 246, 236, 0.78);
}

.best-fit-card li {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(220, 193, 140, 0.2);
}

.price-teaser,
.lead-magnet {
  padding-top: 0;
}

.price-teaser-card,
.lead-magnet-card {
  display: grid;
  width: var(--content);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  color: var(--cream);
  background: var(--navy-deep);
  border: 1px solid var(--line-gold);
}

.lead-magnet-card {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.55fr);
  align-items: start;
}

.price-teaser-card h2,
.lead-magnet-card h2 {
  color: var(--gold-light);
}

.price-teaser-card p,
.lead-magnet-card p {
  max-width: 760px;
  color: rgba(250, 246, 236, 0.75);
}

.compact-enquiry-form {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.consent-check {
  display: flex !important;
  gap: 0.7rem !important;
  align-items: flex-start;
  color: var(--muted) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0 !important;
  line-height: 1.4;
  text-transform: none !important;
}

.consent-check input {
  width: auto;
  margin-top: 0.2rem;
}

.content-page {
  padding-top: 82px;
}

.page-hero {
  display: grid;
  min-height: 520px;
  align-content: end;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(8, 19, 31, 0.96), rgba(16, 28, 43, 0.85)),
    url("assets/abermaw-hero.webp") center/cover;
}

.page-hero h1,
.page-hero .eyebrow {
  color: var(--gold-light);
}

.page-hero .hero-copy {
  max-width: 760px;
  color: rgba(250, 246, 236, 0.82);
}

.content-card-grid,
.price-guide-grid {
  display: grid;
  width: var(--content);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto;
}

.content-tile,
.price-guide-card,
.content-page-main,
.side-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(8, 19, 31, 0.06);
}

.content-tile,
.price-guide-card {
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.content-tile h2,
.price-guide-card h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.service-detail {
  display: grid;
  width: var(--content);
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin: 0 auto;
}

.content-page-main,
.side-card {
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.content-page-main h2:not(:first-child) {
  margin-top: 2.2rem;
}

.content-page-side {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq-list {
  display: grid;
  width: min(920px, calc(100vw - 3rem));
  gap: 0.8rem;
  margin: 0 auto;
}

.faq-item {
  padding: 1.1rem 1.3rem;
  background: #fffdf8;
  border: 1px solid var(--line);
}

.faq-item p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.internal-links {
  width: var(--content);
  margin: 0 auto;
  padding-top: 0;
}

.price-guide-card strong {
  display: block;
  margin: 1rem 0;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  font-weight: 400;
}

.price-guide-card dl {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.price-guide-card dt {
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-guide-card dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.price-disclaimer {
  width: min(900px, calc(100vw - 3rem));
  margin: 2rem auto 0;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1100px) {
  :root {
    --content: calc(100vw - 5rem);
  }

  .site-header {
    padding: 0 2.5rem;
  }

  .section-pad {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  .hero-content {
    margin-left: 2.5rem;
  }

  .scroll-cue {
    right: 2.5rem;
  }

  .craft {
    gap: 4rem;
  }

  .work-heading {
    grid-template-columns: 1fr 2.2fr;
  }

  .work-heading > p {
    grid-column: 2;
  }

  .process {
    gap: 5rem;
  }

  .contact {
    gap: 4rem;
  }

  .trust-strip,
  .quote-steps,
  .content-card-grid,
  .price-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .best-fit-card,
  .lead-magnet-card,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .content-page-side {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled {
    height: 78px;
    padding: 0 1.25rem;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .brand-type > span {
    font-size: 1.2rem;
  }

  .brand-type small {
    font-size: 0.5rem;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0;
    color: inherit;
    cursor: pointer;
  }

  .menu-toggle-label {
    font-size: 0.6rem;
    font-weight: 650;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .menu-lines {
    display: grid;
    width: 26px;
    gap: 6px;
  }

  .menu-lines i {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition:
      transform 0.3s,
      width 0.3s;
  }

  .menu-lines i:last-child {
    width: 72%;
    justify-self: end;
  }

  .menu-open .menu-lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-lines i:last-child {
    width: 100%;
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    padding: 7rem 2rem 3rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    color: var(--cream);
    background: var(--navy-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.35s,
      transform 0.35s var(--ease);
  }

  .menu-open .site-header {
    color: var(--cream);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a:not(.nav-cta) {
    font-family: var(--serif);
    font-size: clamp(2.3rem, 9vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: none;
  }

  .site-nav .nav-cta {
    margin-top: 1.5rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 19, 31, 0.9) 0%, rgba(8, 19, 31, 0.48) 82%),
      linear-gradient(0deg, rgba(8, 19, 31, 0.78) 0%, transparent 58%);
  }

  .hero-content {
    width: auto;
    margin: 0 1.25rem 6rem;
  }

  h1 {
    font-size: clamp(3.8rem, 15vw, 6rem);
  }

  .hero-copy {
    max-width: 90%;
  }

  .hero-note,
  .scroll-cue {
    display: none;
  }

  .section-pad {
    padding: 6.5rem 1.25rem;
  }

  .introduction,
  .craft,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

  .introduction {
    gap: 2.5rem;
  }

  .intro-copy h2 {
    margin-bottom: 3rem;
  }

  .intro-columns {
    margin-left: 0;
  }

  .intro-copy > .text-link {
    margin-left: 0;
  }

  .craft {
    gap: 5rem;
  }

  .craft-image-wrap {
    width: min(85%, 560px);
  }

  .craft-content {
    max-width: 680px;
  }

  .work-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .work-heading > p {
    grid-column: auto;
    max-width: 500px;
  }

  .trust-strip,
  .quote-steps,
  .content-card-grid,
  .price-guide-grid,
  .price-teaser-card {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    width: calc(100vw - 2.5rem);
  }

  .page-hero {
    min-height: 460px;
  }

  .project-grid {
    gap: 4rem;
  }

  .project-meta {
    display: block;
  }

  .project-meta > span {
    display: block;
    margin-top: 0.5rem;
    text-align: left;
  }

  .process {
    gap: 4rem;
  }

  .process h2 {
    margin-top: 2.2rem;
  }

  .contact {
    gap: 4rem;
  }

  .site-footer {
    padding: 4rem 1.25rem 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .back-to-top {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-top > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 700px;
  }

  .hero-content {
    margin-bottom: 3.5rem;
  }

  .hero-eyebrow {
    margin-bottom: 1.2rem;
    font-size: 0.57rem;
  }

  h1 {
    margin-bottom: 1.3rem;
    font-size: clamp(3.3rem, 16vw, 5rem);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 1.7rem;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .section-pad {
    padding-top: 5.3rem;
    padding-bottom: 5.3rem;
  }

  .section-kicker {
    gap: 0.8rem;
  }

  .section-kicker p {
    padding-left: 0.8rem;
  }

  .intro-copy h2,
  .craft-content h2,
  .work-heading h2,
  .process h2,
  .contact h2 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .intro-columns {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .intro-ornament {
    width: 20rem;
  }

  .craft-image-wrap {
    width: calc(100% - 1.5rem);
  }

  .craft-image-wrap::before {
    top: -1rem;
    right: -1rem;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-wide .project-image {
    aspect-ratio: 1.1;
  }

  .project-arrow {
    transform: translateY(0);
  }

  .process-list li {
    grid-template-columns: 38px 1fr;
    gap: 0.8rem;
  }

  .testimonial {
    min-height: 550px;
  }

  .quote-mark {
    top: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .enquiry-form {
    padding: 2.1rem 1.4rem;
  }

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

  .form-footer .button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

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

  .footer-bottom div {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
