:root {
  --green: #4c3b15;
  --deep-green: #3f3112;
  --light-green: #806829;
  --gold: #806829;
  --hover: #a36a29;
  --cursor-hover: #806829;
  --ivory: #eae4da;
  --pale-ivory: #f8f4ec;
  --field: rgba(248, 244, 236, 0.72);
  --paper: rgba(248, 244, 236, 0.5);
}

* {
  box-sizing: border-box;
  cursor: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--green);
  cursor: none;
  font-family: "Courier New", monospace;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
  pointer-events: none;
  opacity: 0.08;
}

a,
button,
input,
select,
textarea,
summary {
  cursor: none;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-select: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: left, top, transform;
  transition: background 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.cursor.visible {
  opacity: 1;
}

.cursor.link-hover {
  background: var(--cursor-hover);
  transform: translate(-50%, -50%) scale(1.18);
}

.cursor.on-dark {
  background: var(--ivory);
}

.cursor.on-dark.link-hover {
  background: var(--light-green);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 40px;
  background: rgba(234, 228, 218, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--green);
  font-size: 12px;
}

.brand {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s ease;
}

.brand:hover {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: 19px;
  font-weight: 300;
  color: var(--green);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-dropdown summary:hover {
  color: var(--hover);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  color: var(--green);
  cursor: pointer;
}

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

.nav-dropdown summary::after {
  content: " +";
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.nav-dropdown[open] summary::after {
  content: " -";
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 50%;
  display: grid;
  gap: 10px;
  min-width: 180px;
  padding: 18px;
  background: rgba(234, 228, 218, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: left;
  transform: translateX(50%);
}

.nav-dropdown-menu a {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
}

.enquiry-button,
.button {
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: var(--ivory);
  padding: 10px 18px;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.enquiry-button {
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: 19px;
  font-weight: 300;
}

.enquiry-button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ivory);
}

.button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green);
}

.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 120px 20px 70px;
  text-align: center;
}

.hero-tile {
  display: block;
  width: min(390px, 58vw);
  margin: 0 auto 18px;
}

.signature,
h1,
h2,
h3,
.category {
  color: var(--gold);
  font-family: "Cormorant Infant", Georgia, serif;
  font-weight: 300;
  text-transform: lowercase;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  text-wrap: balance;
}

.faq-heading {
  text-transform: uppercase;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1.12;
  text-wrap: balance;
}

h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

p {
  line-height: 1.8;
}

.signature {
  margin-bottom: 18px;
  font-size: 20px;
}

.hero-copy {
  min-height: 42px;
}

.hero-copy p {
  margin: 4px 0;
  font-size: 12px;
  opacity: 0.74;
}

.typing::after {
  content: "|";
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.8s steps(1) infinite;
}

.typing-pilcrow::after {
  content: "¶";
  margin-left: 4px;
  animation: blink 0.28s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.arrive,
.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.arrive {
  animation: arrive 0.42s ease forwards;
}

.arrive-delay-1 {
  animation-delay: 0.18s;
}

.reveal.visible {
  animation: arrive 0.54s ease forwards;
  animation-delay: var(--arrival-delay, 0ms);
}

.editorial-section .editorial-card.reveal.visible {
  animation-delay: calc(var(--arrival-delay, 0ms) + 1.95s);
}

@keyframes arrive {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow,
.subline,
.meta,
.tag {
  font-size: 11px;
}

.subline {
  opacity: 0.72;
}

.services-intro {
  max-width: 84ch;
  font-family: "Courier New", monospace;
  line-height: 1.85;
  text-align: center;
}

.coming-soon {
  font-family: "Courier New", monospace;
}

main section,
.page-header {
  padding: 120px 10%;
}

main section.image-section {
  padding-left: 4vw;
  padding-right: 4vw;
}

.page-header {
  padding-top: 150px;
  text-align: center;
}

.page-header p,
.intro p,
.about-wrap p,
.dark-band p,
.faq-item p,
.service-item p {
  font-size: 12px;
}

.page-header p,
.intro p,
.dark-band p,
.service-item p,
.shop-card p {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.about-wrap p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.intro {
  max-width: 690px;
  margin: 0 auto 46px;
  text-align: center;
}

.project-grid,
.portfolio-grid,
.services-grid,
.shop-grid {
  display: grid;
  gap: 44px;
}

.project-grid,
.portfolio-grid {
  width: min(1480px, 100%);
  margin-left: auto;
  margin-right: auto;
  gap: clamp(24px, 2vw, 34px);
}

.portfolio-grid {
  gap: clamp(28px, 4vw, 60px);
}

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

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 36px;
}

.editorial-header {
  padding: 150px 40px 24px;
  text-align: left;
}

.editorial-title {
  display: block;
  min-height: 1.05em;
  margin-bottom: 22px;
  color: var(--green);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.editorial-title-link {
  text-decoration: none;
}

.editorial-title-link:hover {
  color: var(--gold);
}

.editorial-rule {
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
  animation: editorial-rule-draw 0.72s ease forwards;
  animation-delay: 1.16s;
}

.editorial-article-masthead {
  padding-bottom: 0;
}

.editorial-article-masthead .editorial-rule {
  animation-delay: 0.18s;
}

.editorial-article-header {
  padding-top: 70px;
}

@keyframes editorial-rule-draw {
  to {
    transform: scaleX(1);
  }
}

.editorial-section {
  padding: 34px 40px 130px;
}

.editorial-strip-wrap {
  position: relative;
}

.editorial-strip {
  display: flex;
  gap: clamp(24px, 3vw, 46px);
  overflow-x: auto;
  padding: 8px 86px 14px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.editorial-strip::-webkit-scrollbar {
  display: none;
}

.editorial-card {
  flex: 0 0 clamp(260px, 28vw, 390px);
  scroll-snap-align: start;
}

.editorial-card a {
  color: var(--green);
  text-decoration: none;
}

.editorial-frame {
  background: var(--pale-ivory);
  padding: clamp(8px, 0.8vw, 12px);
  box-shadow: 0 10px 30px rgba(38, 30, 16, 0.045);
}

.editorial-frame img {
  display: block;
  width: 100%;
  pointer-events: none;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.editorial-card:hover img {
  filter: contrast(1.05);
  transform: scale(1.03);
}

.editorial-card h2 {
  margin: 16px 0 0;
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 12px;
  line-height: 1.4;
  text-transform: none;
  white-space: nowrap;
}

.editorial-scroll-cue {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: rgba(234, 228, 218, 0.76);
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 18px;
  transform: translateY(-50%);
}

.shop-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding-top: 20px;
}

.image-frame,
.project-card,
.portfolio-card {
  border: 0;
}

.project-card,
.portfolio-frame,
.shop-frame {
  background: var(--pale-ivory);
  padding: clamp(8px, 0.8vw, 12px);
  box-shadow: 0 10px 30px rgba(38, 30, 16, 0.045);
}

.project-card img {
  display: block;
  width: 100%;
  transition: transform 0.6s ease, filter 0.6s ease;
  pointer-events: none;
}

.project-card:nth-child(3) img {
  transform: scaleX(-1);
}

.project-card:hover img {
  transform: scale(1.03);
  filter: contrast(1.05);
}

.project-card:nth-child(3):hover img {
  transform: scaleX(-1) scale(1.03);
}

.portfolio-card,
.shop-card {
  background: transparent;
}

.portfolio-frame img,
.shop-frame img {
  display: block;
  width: 100%;
  transition: transform 0.6s ease;
  pointer-events: none;
}

.portfolio-frame a {
  display: block;
  text-decoration: none;
}

.portfolio-card:hover img {
  transform: scale(1.03);
}

.shop-card h2 {
  margin: 18px 0 10px;
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 12px;
  line-height: 1.6;
}

.shop-card p {
  margin: 0;
  font-size: 11px;
  opacity: 0.76;
}

.product-status {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-style: italic;
}

.about-wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-image {
  max-width: 410px;
  margin: 42px auto;
}

.about-image img {
  display: block;
  width: 100%;
}

.dark-band {
  background: var(--deep-green);
  color: var(--ivory);
  text-align: center;
}

.cta-band {
  position: relative;
  padding-top: 132px;
  padding-bottom: 138px;
}

.cta-band::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(1120px, 84vw);
  bottom: 0;
  height: 1px;
  background: rgba(234, 228, 218, 0.28);
  transform: translateX(-50%);
}

.dark-band h2 {
  color: #d6c299;
}

.dark-band p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
}

.dark-band .button {
  border-color: var(--ivory);
  color: var(--ivory);
  display: inline-block;
  margin-top: 10px;
}

.dark-band .button:hover {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--green);
}

.filter-row {
  margin-top: 42px;
}

.filter-row select {
  margin-top: 12px;
}

select {
  border: 1px solid rgba(38, 30, 16, 0.18);
  background: var(--field);
  color: var(--green);
  padding: 8px 12px;
  font: inherit;
  font-size: 11px;
  outline-color: var(--green);
}

.meta {
  padding: 13px 0 2px;
  opacity: 0.82;
}

.portfolio-card .meta {
  overflow: hidden;
}

.category {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.portfolio-card .category {
  display: block;
  margin: 0 0 5px;
  font-size: 13px;
}

.tag {
  display: inline-block;
  border: 1px solid rgba(38, 30, 16, 0.14);
  margin: 3px 4px 0 0;
  padding: 3px 6px;
  font-size: 10px;
}

.portfolio-card .tag {
  margin: 2px 3px 0 0;
  padding: 2px 5px;
  font-size: 9px;
  letter-spacing: 0;
}

.read-more {
  display: block;
  margin-top: 12px;
  text-align: right;
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-style: italic;
  text-decoration: none;
}

.read-more:hover {
  color: var(--gold);
}

.read-more.is-hidden {
  display: none;
}

.studio-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-style: italic;
  text-decoration: none;
}

.studio-link:hover {
  color: var(--gold);
}

.article-page .page-header {
  padding-bottom: 58px;
}

.article-hero {
  display: block;
  width: min(980px, 100%);
  margin: 44px auto 0;
  box-shadow: 0 18px 42px rgba(38, 30, 16, 0.08);
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 10% 72px;
}

.article-body p {
  max-width: 68ch;
  margin: 0 auto 22px;
  font-size: 12px;
  text-wrap: pretty;
}

.article-gallery {
  display: grid;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 10px 4vw 132px;
  gap: clamp(24px, 3vw, 42px);
}

.article-gallery-item {
  margin: 0;
}

.article-gallery-item img {
  display: block;
  width: 100%;
  box-shadow: 0 18px 42px rgba(38, 30, 16, 0.07);
}

.article-gallery-item:nth-child(4) {
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-item {
  background: var(--paper);
  padding: 28px;
}

.service-list {
  max-width: 920px;
}

.faq-item.service-item {
  background: var(--pale-ivory);
  padding: 0;
}

.sitemap-list {
  display: grid;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.sitemap-list a {
  color: var(--green);
  text-decoration: none;
}

.sitemap-list a:hover {
  color: var(--gold);
}

.faq-list {
  max-width: 860px;
  padding-top: 28px;
  margin: 0 auto;
}

main section.faq-list {
  padding-top: 18px;
}

.faq-item {
  background: var(--pale-ivory);
  border: 0;
  margin-bottom: 14px;
  padding: 0;
}

.faq-item summary {
  position: relative;
  list-style: none;
  padding: 22px 56px 22px 24px;
  color: var(--gold);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 18px;
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
}

.booking-frame {
  width: min(960px, 100%);
  height: 820px;
  margin: 42px auto 0;
  border: 0;
  border-radius: 8px;
  background: var(--pale-ivory);
}

.article-page .article-hero {
  display: block;
  width: min(620px, 100%);
  margin: 44px auto 0;
  background: var(--pale-ivory);
  padding: clamp(8px, 0.8vw, 12px);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 10% 145px;
}

.article-body p {
  font-size: 12px;
}

.editorial-article .article-body {
  text-align: center;
}

.article-enquiry-button {
  display: inline-block;
  margin: 54px auto 0;
  font-family: "Courier New", monospace;
  text-transform: lowercase;
}

.home-info-panels {
  background: var(--ivory);
  padding-top: 70px;
  padding-bottom: 78px;
}

.home-panel-wrap {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.home-panel {
  background: var(--pale-ivory);
  color: var(--green);
  padding: 0;
}

.home-panel summary {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  padding: 24px 28px;
  color: var(--gold);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 300;
  cursor: pointer;
}

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

.home-panel summary::after {
  content: "+";
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 16px;
}

.home-panel[open] summary::after {
  content: "-";
}

.home-panel summary em {
  margin-left: auto;
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.home-panel summary:hover em,
.home-panel summary:focus-visible em {
  opacity: 0.76;
}

.home-panel p,
.home-panel ul,
.home-panel .studio-link {
  max-width: 760px;
  margin-left: 28px;
  margin-right: 28px;
}

.home-panel p {
  margin-top: 0;
  font-size: 12px;
}

.home-panel ul {
  columns: 2;
  padding-left: 18px;
  font-family: "Courier New", monospace;
  font-size: 11px;
  line-height: 1.8;
}

.home-panel .studio-link {
  display: inline-block;
  margin-bottom: 28px;
}

.home-faq-item h3 {
  max-width: 760px;
  margin: 0 28px 8px;
  color: var(--gold);
  font-size: 20px;
}

.home-faq-item p {
  margin-bottom: 18px;
}

.home-closing-mark {
  background: var(--ivory);
  padding-top: 8px;
  padding-bottom: 82px;
  text-align: center;
}

.home-closing-mark img {
  width: min(259px, 44vw);
}

@media (min-width: 721px) {
  .hero-tile {
    width: 293px;
  }
}

footer {
  background: var(--deep-green);
  color: var(--ivory);
  padding: 56px 8%;
  font-size: 11px;
  line-height: 1.75;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(36px, 6vw, 84px);
  row-gap: 36px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.footer-block {
  width: 100%;
  text-align: left;
}

.footer-block:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.footer-block p {
  margin: 10px 0 0;
}

.footer-block:nth-child(2).visible {
  animation-delay: 0.08s;
}

.footer-block:nth-child(3).visible {
  animation-delay: 0.16s;
}

.footer-title {
  color: #d6c299;
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: 22px;
  font-weight: 300;
}

.footer-links,
.social-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-subsection {
  margin-top: 24px;
  padding-top: 0;
}

.footer-base {
  max-width: 1120px;
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 241, 225, 0.42);
  color: var(--ivory);
  font-family: "Courier New", monospace;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}

.footer-links a,
.social-links a,
.footer-email {
  color: var(--ivory);
  text-decoration: none;
}

.footer-links a:hover,
.social-links a:hover,
.footer-email:hover {
  color: var(--gold);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  vertical-align: -4px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover .social-icon {
  background: var(--ivory);
  border-color: var(--gold);
  color: var(--gold);
}

.social-svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.social-svg-pinterest {
  width: 12px;
  height: 12px;
}

.social-svg path:last-child {
  fill: none;
}

.enquiry-panel {
  position: fixed;
  top: 0;
  right: -440px;
  z-index: 40;
  width: min(440px, 100vw);
  height: 100vh;
  overflow-y: auto;
  background: var(--ivory);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
  transition: right 0.45s ease;
}

.enquiry-panel.active {
  right: 0;
}

.enquiry-close {
  position: absolute;
  top: 20px;
  right: 24px;
  border: 0;
  background: transparent;
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 24px;
}

.enquiry-inner {
  padding: 72px 40px;
  text-align: left;
}

.enquiry-inner h2 {
  font-family: "Cormorant Infant", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--green);
  text-transform: uppercase;
}

.enquiry-inner p {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 13px;
}

.enquiry-inner label,
.field-label {
  display: block;
  margin-top: 18px;
  font-size: 11px;
}

.enquiry-inner input,
.enquiry-inner textarea,
.enquiry-inner select {
  width: 100%;
  border: 0;
  background: var(--field);
  color: var(--green);
  margin-top: 8px;
  padding: 11px 12px;
  font: inherit;
  outline: 1px solid transparent;
  outline-offset: 0;
}

.enquiry-inner input:focus,
.enquiry-inner textarea:focus,
.enquiry-inner select:focus {
  outline-color: var(--green);
}

.enquiry-inner input::placeholder,
.enquiry-inner textarea::placeholder {
  color: rgba(76, 59, 21, 0.44);
  font-family: "Courier New", monospace;
  font-style: italic;
}

.service-options {
  margin-top: 20px;
}

.service-options p {
  margin-bottom: 12px;
}

.service-options label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
}

.service-options input {
  appearance: none;
  display: grid;
  place-items: center;
  width: auto;
  min-width: 14px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--green);
  background: var(--pale-ivory);
  margin-top: 0;
  padding: 0;
}

.service-options input::after {
  content: "";
  width: 7px;
  height: 4px;
  border-left: 1.5px solid var(--ivory);
  border-bottom: 1.5px solid var(--ivory);
  opacity: 0;
  transform: rotate(-45deg) translateY(-1px);
}

.service-options input:checked {
  background: var(--green);
}

.service-options input:checked::after {
  opacity: 1;
}

.enquiry-inner .button {
  margin-top: 28px;
  font-family: "Courier New", monospace;
}

.thank-you {
  display: none;
  margin-top: 36px;
  text-align: center;
}

.thank-you.visible {
  display: block;
}

@media (max-width: 780px) {
  .site-nav {
    padding: 18px 22px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 62px 0 auto;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 34px 22px 38px;
    background: rgba(234, 228, 218, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a,
  .nav-links button,
  .nav-dropdown {
    width: 100%;
    max-width: 280px;
    margin: 0;
    padding: 12px 0;
    text-align: center;
  }

  .nav-dropdown summary {
    text-align: center;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 12px 0 0;
    background: transparent;
    text-align: center;
    transform: none;
  }

  .enquiry-button {
    margin-top: 12px;
    padding: 10px 18px;
  }

  main section,
  .page-header {
    padding: 86px 7%;
  }

  .editorial-header {
    padding: 104px 22px 22px;
  }

  .editorial-section {
    padding: 28px 7% 96px;
  }

  .editorial-strip {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-right: 0;
  }

  .editorial-card {
    flex-basis: auto;
  }

  .editorial-scroll-cue {
    display: none;
  }

  main section.image-section {
    padding-left: 7%;
    padding-right: 7%;
  }

  .project-grid,
  .portfolio-grid {
    width: 100%;
    gap: 44px;
    grid-template-columns: 1fr;
  }

  main section.faq-list {
    padding-top: 12px;
  }

  .home-panel summary {
    display: grid;
    gap: 6px;
  }

  .home-panel summary em {
    margin-left: 0;
    opacity: 0.72;
  }

  .home-panel ul {
    columns: 1;
  }

  .article-page .page-header {
    padding-bottom: 38px;
  }

  .article-hero {
    margin-top: 32px;
  }

  .article-body {
    padding: 0 7% 58px;
  }

  .article-gallery {
    padding: 0 7% 92px;
  }

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

  .footer-block,
  .footer-block:first-child,
  .footer-block:nth-child(2),
  .footer-block:nth-child(3) {
    width: 100%;
    justify-self: stretch;
  }

  .booking-frame {
    height: 980px;
  }
}

@media (pointer: coarse) {
  body,
  *,
  a,
  button,
  input,
  select,
  textarea,
  summary {
    cursor: auto;
  }

  .cursor {
    display: none;
  }
}
