:root {
  --paper: #fffaf2;
  --white: #fffefd;
  --ink: #2d261f;
  --muted: #6f665c;
  --line: rgba(45, 38, 31, 0.16);
  --sun: #f0b63f;
  --ochre: #c86f3f;
  --lavender: #7562a8;
  --lavender-dark: #4f4277;
  --olive: #56683d;
  --blue: #357d9d;
  --shadow: 0 20px 60px rgba(45, 38, 31, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(117, 98, 168, 0.08) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: 72px 72px;
  font-family: var(--sans);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(16px, 3vw, 44px);
  align-items: center;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 12px 40px rgba(45, 38, 31, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.55rem;
  line-height: 1;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav a,
.nav-action {
  transition: color 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.nav-action:hover {
  color: var(--sun);
  transform: translateY(-1px);
}

.nav-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(780px, 82svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(45, 38, 31, 0.86), rgba(45, 38, 31, 0.32) 58%, rgba(45, 38, 31, 0.12)),
    linear-gradient(0deg, rgba(45, 38, 31, 0.56), rgba(45, 38, 31, 0.08) 45%),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  bottom: clamp(34px, 7vw, 92px);
  width: clamp(120px, 18vw, 260px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 clamp(58px, 9vh, 96px);
}

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

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4.5rem, 15vw, 10.5rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button.primary {
  color: #241b16;
  background: var(--sun);
  border-color: var(--sun);
}

.button.primary:hover {
  background: #ffd16d;
}

.button.ghost {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.button.secondary {
  color: var(--white);
  background: var(--lavender);
  border-color: var(--lavender);
}

.button.full {
  width: 100%;
}

.band {
  padding: clamp(68px, 9vw, 126px) clamp(18px, 4vw, 56px);
}

.section-grid,
.enquiry-layout,
.visit {
  width: min(1160px, 100%);
  margin: 0 auto;
}

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

.lead-copy {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.lead-copy p {
  margin: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.feature-list li {
  border-left: 4px solid var(--lavender);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 1px 0 var(--line);
  font-weight: 700;
}

.strip {
  display: flex;
  gap: 6px;
  overflow: hidden;
  padding: 16px 0;
  color: var(--white);
  background: var(--olive);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 3vw, 2.1rem);
  white-space: nowrap;
}

.strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.strip span::after {
  color: var(--sun);
  content: "/";
  padding: 0 clamp(14px, 3vw, 34px);
}

.gallery {
  background: linear-gradient(180deg, var(--white), rgba(53, 125, 157, 0.12));
}

.section-heading {
  width: min(1160px, 100%);
  margin: 0 auto clamp(30px, 5vw, 58px);
}

.section-heading p {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.photo-grid {
  display: grid;
  width: min(1160px, 100%);
  margin: 0 auto;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.photo-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--lavender-dark);
  box-shadow: var(--shadow);
}

.photo-panel:first-child {
  min-height: 520px;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 260ms ease;
}

.photo-panel:hover img {
  transform: scale(1.025);
}

.photo-panel figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(45, 38, 31, 0.66);
  font-size: 0.86rem;
  font-weight: 800;
}

.enquiry {
  background:
    linear-gradient(135deg, rgba(240, 182, 63, 0.2), transparent 36%),
    linear-gradient(225deg, rgba(117, 98, 168, 0.18), transparent 36%),
    var(--paper);
}

.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.enquiry-form,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.82);
  box-shadow: 0 18px 50px rgba(45, 38, 31, 0.08);
}

.enquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 36px);
}

.field {
  display: grid;
  gap: 8px;
}

.field.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label,
.field label {
  display: grid;
  gap: 8px;
}

label span,
.contact-label {
  color: var(--lavender-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(45, 38, 31, 0.2);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(240, 182, 63, 0.34);
  border-color: var(--ochre);
}

.submit-button {
  justify-self: start;
  cursor: pointer;
}

.contact-panel {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 4vw, 34px);
}

.contact-block {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-block p {
  margin: 0;
}

.contact-block a {
  display: inline-block;
  margin-top: 6px;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 900;
}

.contact-label {
  margin-bottom: 8px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
}

.visit-art {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 125, 157, 0.28), transparent 38%),
    linear-gradient(45deg, rgba(200, 111, 63, 0.34), transparent 48%),
    #f6e4c8;
  box-shadow: var(--shadow);
}

.visit-art span {
  position: absolute;
  display: block;
}

.visit-art span:nth-child(1) {
  inset: 42px auto auto 42px;
  width: 42%;
  aspect-ratio: 1;
  border: 18px solid var(--blue);
  border-radius: 50% 50% 0 0;
}

.visit-art span:nth-child(2) {
  right: 36px;
  bottom: 34px;
  width: 48%;
  height: 46%;
  background: repeating-linear-gradient(90deg, var(--lavender), var(--lavender) 10px, #967ec2 10px, #967ec2 20px);
  clip-path: polygon(0 26%, 100% 0, 100% 100%, 0 100%);
}

.visit-art span:nth-child(3) {
  left: 18%;
  bottom: 0;
  width: 22%;
  height: 58%;
  background: var(--olive);
  border-radius: 999px 999px 0 0;
}

.visit p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  width: 62px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.38);
  font-weight: 900;
}

.whatsapp-float span {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--ink);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--sun);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 78svh;
  }

  .section-grid,
  .enquiry-layout,
  .visit {
    grid-template-columns: 1fr;
  }

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

  .photo-panel,
  .photo-panel:first-child {
    min-height: 340px;
  }

  h2 {
    max-width: 14ch;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 36px;
  }

  .nav-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .hero-inner {
    width: min(100% - 32px, 760px);
    padding-top: 118px;
  }

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

  .feature-list,
  .field.two-up {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    display: none;
  }

  .site-footer {
    display: grid;
  }
}
