/* ===========================================================
   Monet's Styling — shared stylesheet
   =========================================================== */

:root {
  --cream: #f7f1e6;
  --card: #fffdf8;
  --ink: #1b1815;
  --muted: #6f665c;
  --tan: #d9bfa0;
  --tan-dark: #b8916a;
  --tan-deep: #8f6a49;
  --line: #e7ddcc;
  --sidebar-w: 260px;
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream) url("assets/brand/paper-texture.jpg");
  background-size: 900px 600px;
  color: var(--ink);
  font-family: "Jost", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, .display {
  font-family: "Playfair Display", "PT Serif", serif;
  margin: 0 0 .4em;
  color: var(--ink);
  font-weight: 700;
}

p { margin: 0 0 1em; }

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

/* ---------- Layout shell ---------- */

.shell {
  display: flex;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
}

/* ---------- Sidebar ---------- */

.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}

.sidebar .logo {
  width: 170px;
  margin-bottom: 44px;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: auto;
}

.sidebar nav a {
  font-size: 15px;
  letter-spacing: .03em;
  color: var(--ink);
  padding: 2px 0;
  position: relative;
  width: fit-content;
}

.sidebar nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 1px;
  background: var(--tan-deep);
  transition: width .25s ease;
}

.sidebar nav a:hover::after { width: 100%; }

.sidebar nav a.active {
  color: var(--tan-deep);
  font-weight: 600;
}

.sidebar .contact-block {
  margin-top: 40px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

.sidebar .contact-block a:hover { color: var(--tan-deep); }

.sidebar .copyright {
  margin-top: 24px;
  font-size: 11.5px;
  color: var(--muted);
  opacity: .8;
}

.menu-toggle {
  display: none;
}

/* ---------- Main content ---------- */

main {
  flex: 1;
  padding: 56px 56px 90px;
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--tan-deep);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.page-title {
  font-size: 40px;
  max-width: 720px;
}

.page-intro {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 40px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .04em;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: all .2s ease;
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--tan-deep); border-color: var(--tan-deep); }

.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ---------- Home / hero ---------- */

.hero {
  margin-bottom: 56px;
}

.hero h1 {
  font-size: 46px;
  max-width: 760px;
}

.hero .script {
  display: block;
  font-style: italic;
  color: var(--tan-deep);
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.gallery-grid a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--card);
  box-shadow: 0 12px 30px -18px rgba(30,20,10,.35);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-grid a:hover img { transform: scale(1.05); }

.gallery-grid figcaption,
.gallery-caption {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 8px;
}

/* ---------- Portfolio project groups ---------- */

.portfolio-groups {
  margin-top: 36px;
}

.gallery-group {
  margin-bottom: 48px;
}

.gallery-group:last-child {
  margin-bottom: 0;
}

.group-title {
  font-size: 20px;
  margin-bottom: 16px;
}

.gallery-grid .video-tile {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ink);
  box-shadow: 0 12px 30px -18px rgba(30,20,10,.35);
}

.gallery-grid .video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Home swipeable gallery ---------- */

.hscroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-bottom: 4px;
}

.hscroll.dragging { cursor: grabbing; scroll-snap-type: none; }

.hscroll::-webkit-scrollbar { height: 6px; }
.hscroll::-webkit-scrollbar-track { background: transparent; }
.hscroll::-webkit-scrollbar-thumb { background: var(--tan); border-radius: 3px; }

.hscroll-item {
  flex: 0 0 auto;
  width: min(360px, 70vw);
  height: min(64vh, 620px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  background: var(--card);
}

.hscroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 760px) {
  .hscroll-item { width: 80vw; height: 56vh; }
}

/* ---------- About ---------- */

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.about-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
  box-shadow: 0 12px 30px -18px rgba(30,20,10,.35);
}

.about-layout .quote-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 34px 30px;
  border: 1px solid var(--line);
}

.about-layout .quote-card p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 10px;
}

.about-layout .quote-card cite {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
}

.about-credentials {
  display: flex;
  gap: 14px;
  margin: 22px 0 6px;
  flex-wrap: wrap;
}

.pill {
  background: var(--tan);
  color: #3c2c1c;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
}

/* ---------- Services ---------- */

.services-tabs-note {
  margin-bottom: 30px;
}

.section-heading {
  font-size: 26px;
  margin-top: 54px;
  margin-bottom: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.section-sub {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 26px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.package-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.package-card .card-top {
  background: var(--ink);
  color: var(--cream);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.package-card .card-top .tagline {
  font-size: 13px;
  line-height: 1.5;
  color: #e9e2d6;
}

.package-card .price {
  background: var(--tan);
  color: #3c2c1c;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
  padding: 6px 14px;
  border-radius: 12px;
  white-space: nowrap;
}

.package-card .card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.package-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink);
  flex: 1;
}

.package-card ul li { margin-bottom: 6px; }

.package-card .card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.package-card .name-tag {
  display: inline-block;
  background: var(--tan-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}

.addon-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
  margin-top: 8px;
}

.addon-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.addon-item .addon-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
}

.addon-item .addon-rate {
  color: var(--tan-deep);
  white-space: nowrap;
}

.addon-item p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 4px 0 0;
}

.fine-print {
  margin-top: 40px;
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

/* ---------- Contact ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}

.contact-info .info-row {
  margin-bottom: 22px;
}

.contact-info .info-row .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info .info-row a,
.contact-info .info-row span {
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

form.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.contact-form label {
  display: block;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 6px;
  margin-top: 18px;
}

.contact-form label:first-child { margin-top: 0; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14.5px;
  background: #fff;
  color: var(--ink);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236f665c'><path d='M5.5 7.5l4.5 4.5 4.5-4.5' stroke='%236f665c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.contact-form button {
  margin-top: 22px;
  cursor: pointer;
  font-family: inherit;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 4px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
  margin-top: 0;
  cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--ink);
  cursor: pointer;
}

/* ---------- Discovery form / consult booking ---------- */

.discovery-form {
  max-width: 640px;
}

.consult-booking {
  max-width: 640px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

/* ---------- Footer credit (bottom right, like Format) ---------- */

.built-with {
  text-align: right;
  font-size: 11px;
  color: var(--muted);
  margin-top: 40px;
  opacity: .7;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .about-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .addon-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .shell { flex-direction: column; }

  .sidebar {
    position: relative;
    height: auto;
    width: 100%;
    padding: 22px 24px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar .logo { width: 120px; margin-bottom: 0; }

  .sidebar nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 26px;
    display: none;
    flex-direction: column;
    z-index: 20;
  }

  .sidebar nav.open { display: flex; }

  .sidebar .contact-block,
  .sidebar .copyright { display: none; }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--ink);
    border-radius: 10px;
    background: var(--card);
    color: var(--ink);
    font-size: 18px;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
  }

  .menu-toggle:focus,
  .menu-toggle:active {
    border-color: var(--ink);
    outline: none;
  }

  .menu-toggle svg {
    display: block;
    color: var(--ink);
  }

  main { padding: 36px 22px 60px; }
  .hero h1, .page-title { font-size: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
