:root {
  --ink: #15120f;
  --charcoal: #231f1b;
  --gold: #d8ae72;
  --gold-soft: #f1d9b2;
  --cream: #fff9ee;
  --linen: #f7efe3;
  --sage: #697765;
  --clay: #a55f48;
  --blue: #536676;
  --line: rgba(35, 31, 27, 0.14);
  --shadow: 0 24px 80px rgba(23, 17, 10, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 70px);
  color: var(--cream);
  background: rgba(21, 18, 15, 0.95);
  border-bottom: 1px solid rgba(216, 174, 114, 0.26);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(216, 174, 114, 0.32);
  padding: 5px;
  object-fit: contain;
  background: #050403;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

nav a {
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--gold-soft);
  font-weight: 750;
}

nav a:hover {
  color: var(--ink);
  background: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  min-height: min(760px, calc(100vh - 76px));
  align-items: center;
  padding: clamp(42px, 6vw, 74px) clamp(20px, 6vw, 86px);
  color: var(--cream);
  background:
    radial-gradient(circle at 74% 46%, rgba(216, 174, 114, 0.22), transparent 30%),
    linear-gradient(100deg, rgba(21, 18, 15, 0.96), rgba(21, 18, 15, 0.9) 52%, rgba(83, 102, 118, 0.76)),
    var(--ink);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero .eyebrow,
.art-section .eyebrow,
footer .eyebrow {
  color: var(--gold-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

h3 {
  font-size: 1.22rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 249, 238, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.hero-actions,
.art-copy .button {
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  margin-left: 10px;
  color: var(--cream);
  border-color: rgba(241, 217, 178, 0.42);
  background: rgba(255, 249, 238, 0.08);
}

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

.hero-mark {
  justify-self: end;
  width: min(520px, 100%);
}

.hero-mark img {
  width: 100%;
  border: 1px solid rgba(216, 174, 114, 0.34);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--linen);
}

.trust-strip span {
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--sage);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 110px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.intro > p {
  margin: 0;
  color: rgba(35, 31, 27, 0.72);
  font-size: 1.15rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(62px, 8vw, 105px) clamp(20px, 6vw, 86px);
  color: var(--cream);
  background:
    linear-gradient(100deg, rgba(21, 18, 15, 0.95), rgba(35, 31, 27, 0.82)),
    var(--ink);
}

.about-photo {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid rgba(216, 174, 114, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 174, 114, 0.18), rgba(83, 102, 118, 0.18)),
    url("assets/brand/canter-co-services-logo.png") center / 72% no-repeat,
    #090807;
  box-shadow: var(--shadow);
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 1;
  background:
    radial-gradient(circle at 66% 24%, rgba(216, 174, 114, 0.32), transparent 34%),
    radial-gradient(circle at 22% 68%, rgba(255, 249, 238, 0.12), transparent 42%);
  opacity: 0.66;
  pointer-events: none;
  animation: portrait-light 8s ease-in-out infinite alternate;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 8px;
  background: linear-gradient(180deg, transparent 54%, rgba(21, 18, 15, 0.2));
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
  animation: portrait-drift 12s ease-in-out infinite alternate;
}

.about-photo.missing-photo::after {
  content: "Chloe photo coming soon";
  display: grid;
  min-height: 540px;
  place-items: end center;
  padding: 24px;
  color: var(--gold-soft);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 249, 238, 0.78);
  font-size: 1.04rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.about-highlights span {
  min-height: 54px;
  display: grid;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(241, 217, 178, 0.2);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(255, 249, 238, 0.06);
  font-weight: 900;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 16px;
  border: 1px solid rgba(216, 174, 114, 0.28);
  border-radius: 8px;
  background: rgba(255, 249, 238, 0.08);
}

.contact-card strong {
  width: 100%;
  color: var(--cream);
}

.contact-card a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

@keyframes portrait-drift {
  from {
    transform: scale(1.04) translate3d(-12px, 4px, 0);
    object-position: 42% center;
  }

  to {
    transform: scale(1.13) translate3d(14px, -12px, 0);
    object-position: 58% center;
  }
}

@keyframes portrait-light {
  from {
    opacity: 0.44;
    transform: translate3d(-4%, 2%, 0) scale(1);
  }

  to {
    opacity: 0.72;
    transform: translate3d(4%, -3%, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-photo::before,
  .about-photo img {
    animation: none;
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-intro {
  max-width: 640px;
  margin: 10px 0 0;
  color: rgba(35, 31, 27, 0.68);
}

.pricing-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
}

.pricing-sheet {
  display: grid;
  gap: 16px;
}

.pricing-sheet img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(216, 174, 114, 0.62);
  border-radius: 8px;
  background: #050403;
  box-shadow: 0 24px 60px rgba(28, 20, 10, 0.18);
  object-fit: contain;
}

.pricing-sheet-tall img {
  aspect-ratio: 2 / 3;
}

.pricing-sheet-tall {
  grid-column: 1 / -1;
  width: min(620px, 100%);
  justify-self: center;
}

.pricing-sheet .button {
  width: 100%;
}

.art-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  padding: clamp(62px, 8vw, 100px) clamp(20px, 6vw, 86px);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(21, 18, 15, 0.96), rgba(21, 18, 15, 0.78)),
    url("assets/art/shopview.png") center / cover no-repeat;
}

.art-copy p:not(.eyebrow) {
  color: rgba(255, 249, 238, 0.78);
}

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

figure {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(241, 217, 178, 0.26);
  border-radius: 8px;
  background: rgba(255, 249, 238, 0.08);
}

figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  object-fit: cover;
}

figcaption {
  padding-top: 9px;
  color: var(--gold-soft);
  font-weight: 900;
  text-align: center;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--charcoal);
  font-weight: 950;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(35, 31, 27, 0.7);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  padding: clamp(62px, 8vw, 105px) clamp(20px, 6vw, 86px);
  background: var(--linen);
}

.booking-intro p:not(.eyebrow) {
  color: rgba(35, 31, 27, 0.72);
}

.map-card {
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 54px rgba(28, 20, 10, 0.08);
}

iframe {
  display: block;
  width: 100%;
  min-height: 310px;
  border: 0;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.booking-choice-panel {
  display: grid;
  gap: 12px;
  padding-bottom: 4px;
}

.booking-choice-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.booking-choice-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.booking-choice {
  display: grid;
  gap: 8px;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  color: var(--ink);
  background: #fffdf8;
  text-align: left;
}

.booking-choice strong {
  color: var(--charcoal);
  font-weight: 950;
}

.booking-choice span {
  color: rgba(35, 31, 27, 0.62);
  font-size: 0.86rem;
  line-height: 1.35;
}

.booking-choice.active {
  border-color: rgba(216, 174, 114, 0.9);
  background: var(--gold);
  box-shadow: 0 14px 36px rgba(28, 20, 10, 0.12);
}

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

label {
  display: grid;
  gap: 7px;
  color: rgba(35, 31, 27, 0.76);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(35, 31, 27, 0.16);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(216, 174, 114, 0.45);
  outline-offset: 1px;
  border-color: rgba(216, 174, 114, 0.72);
}

.form-note {
  margin: 0;
  color: rgba(35, 31, 27, 0.62);
  font-size: 0.88rem;
}

footer {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 42px 20px;
  color: var(--cream);
  background: var(--ink);
  text-align: center;
}

footer img {
  width: 104px;
  border: 1px solid rgba(216, 174, 114, 0.32);
}

footer p {
  margin: 0;
  color: rgba(255, 249, 238, 0.76);
}

footer a {
  color: var(--gold-soft);
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .about-section,
  .art-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    justify-self: start;
    width: min(420px, 100%);
  }

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

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .button.secondary {
    margin-left: 0;
  }

  .trust-strip,
  .pricing-gallery,
  .art-gallery,
  .about-highlights,
  .booking-choice-options,
  .form-row {
    grid-template-columns: 1fr;
  }

  .pricing-sheet-tall {
    grid-column: auto;
    width: 100%;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
