@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --sand: #f5efe6;
  --cream: #fffaf4;
  --ink: #2c211d;
  --muted: #6a5951;
  --brand: #8f4f33;
  --brand-deep: #6f3620;
  --rose: #c88a76;
  --line: rgba(71, 45, 34, 0.16);
  --panel: rgba(255, 250, 244, 0.88);
  --shadow: 0 24px 60px rgba(63, 37, 25, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 138, 118, 0.18), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(143, 79, 51, 0.12), transparent 24%),
    linear-gradient(180deg, #efe4d8 0%, var(--sand) 38%, #f8f4ee 100%);
}

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

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

.shell {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(245, 239, 230, 0.8);
  border-bottom: 1px solid rgba(71, 45, 34, 0.08);
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--brand-deep);
}

.brand-mark span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--brand-deep);
}

.nav-action {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}

.hero {
  padding: 48px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.card,
.service-panel,
.info-panel,
.page-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 138, 118, 0.3), transparent 72%);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-copy h1,
.page-panel h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 7vw, 82px);
  line-height: 0.95;
  color: var(--brand-deep);
}

.hero-copy p.lead {
  margin: 20px 0 0;
  max-width: 46rem;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

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

.hero-points li {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(71, 45, 34, 0.1);
  font-size: 15px;
  line-height: 1.5;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(111, 54, 32, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-deep);
  border: 1px solid rgba(71, 45, 34, 0.14);
}

.hero-visual {
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.studio-tile {
  min-height: 220px;
  border-radius: 22px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(63, 37, 25, 0.14);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.studio-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 24, 19, 0.02), rgba(34, 24, 19, 0.72));
}

.studio-tile span,
.studio-tile strong {
  position: relative;
  z-index: 1;
}

.studio-tile span,
.gallery-photo span {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.studio-tile strong,
.gallery-photo strong {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.tile-storefront {
  background-image: url("assets/storefront.jpeg");
}

.tile-interior {
  background-image: url("assets/interior.jpeg");
}

.tile-service {
  background-image: url("assets/service.jpeg");
}

.tile-prices {
  background-image: url("assets/prices.jpeg");
}

.hero-visual .studio-tile:nth-child(2) {
  margin-top: 28px;
}

.hero-visual .studio-tile:nth-child(3) {
  margin-top: -12px;
}

.hero-visual .studio-tile:nth-child(4) {
  margin-top: 18px;
}

main section {
  padding: 18px 0 34px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4vw, 54px);
  color: var(--brand-deep);
}

.section-head p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.info-panel {
  padding: 24px;
}

.info-panel h3,
.service-panel h3,
.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--brand-deep);
}

.info-panel p,
.service-panel p,
.card p,
.page-panel p,
.page-panel li {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.service-panel {
  padding: 26px;
}

.service-panel ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.service-panel li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(71, 45, 34, 0.08);
  font-size: 15px;
  color: var(--ink);
}

.service-panel li span:last-child {
  font-weight: 700;
  color: var(--brand-deep);
  white-space: nowrap;
}

.walk-in-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.walk-in-card .badge {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(143, 79, 51, 0.1);
  color: var(--brand-deep);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.walk-in-card .notes {
  display: grid;
  gap: 12px;
}

.notes strong {
  color: var(--ink);
}

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

.gallery-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(71, 45, 34, 0.12);
  box-shadow: 0 16px 34px rgba(63, 37, 25, 0.14);
}

.gallery-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-photo figcaption {
  padding: 18px 18px 20px;
  display: grid;
  gap: 8px;
  color: var(--brand-deep);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.card {
  padding: 28px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(71, 45, 34, 0.08);
}

.contact-list span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}

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

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

.field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(71, 45, 34, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field-wide {
  grid-column: 1 / -1;
}

.form-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 15px;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(82, 145, 93, 0.14);
  color: #234b2a;
}

.form-status.error {
  background: rgba(143, 79, 51, 0.12);
  color: #6f3620;
}

.site-footer {
  padding: 28px 0 56px;
}

.footer-card {
  padding: 24px 28px;
  background: rgba(44, 33, 29, 0.94);
  color: #f7efe5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer-card p {
  margin: 0;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-shell {
  padding: 56px 0 72px;
}

.page-panel {
  padding: 38px;
}

.page-panel header {
  margin-bottom: 18px;
}

.page-panel h1 {
  font-size: clamp(46px, 6vw, 68px);
}

.page-panel .intro {
  font-size: 18px;
  max-width: 46rem;
}

.page-panel h2 {
  margin: 28px 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  color: var(--brand-deep);
}

.page-panel ul {
  padding-left: 22px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--brand-deep);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid,
  .booking-grid,
  .walk-in-card,
  .services-grid,
  .info-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-form,
  .hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .header-row {
    align-items: start;
    flex-direction: column;
  }

  .nav-links {
    gap: 12px;
  }

  .hero-copy,
  .hero-visual,
  .card,
  .service-panel,
  .info-panel,
  .page-panel {
    padding: 24px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .studio-tile,
  .gallery-photo img {
    height: 200px;
  }
}
