:root {
  --ink: #141414;
  --soft-black: #24201e;
  --white: #ffffff;
  --ivory: #f8f5f1;
  --paper: #efe9e2;
  --parchment: #f1e8d8;
  --plum: #5b3a57;
  --plum-dark: #41283f;
  --copper: #b57c45;
  --copper-light: #d1a16f;
  --muted: #6f6964;
  --border: rgba(181, 124, 69, 0.42);
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
  --sidebar-width: 290px;
  --mobile-header-height: 82px;
  --content-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at 10% 10%, rgba(181, 124, 69, 0.05), transparent 23rem),
    var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

:focus-visible {
  outline: 2px solid var(--copper-light);
  outline-offset: 4px;
}

main,
.site-footer {
  width: calc(100% - var(--sidebar-width));
  margin-left: var(--sidebar-width);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  transform: translateY(-180%);
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.component-error {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 1rem;
  background: var(--parchment);
  color: var(--ink);
}

/* SIDEBAR */
.desktop-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1000;
  width: var(--sidebar-width);
  height: 100vh;
  padding: 2rem 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  background:
    radial-gradient(circle at 20% 10%, rgba(181, 124, 69, 0.09), transparent 220px),
    repeating-linear-gradient(
      0deg,
      rgba(40, 31, 24, 0.018) 0,
      rgba(40, 31, 24, 0.018) 1px,
      transparent 1px,
      transparent 5px
    ),
    var(--parchment);
  color: #211d1b;
  border-right: 1px solid var(--border);
  box-shadow: 15px 0 40px rgba(20, 15, 13, 0.13);
}

.sidebar-logo {
  width: 205px;
  margin-bottom: 1.4rem;
}

.sidebar-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.sidebar-nav a {
  width: 100%;
  padding: 0.9rem 0.5rem;
  border-top: 1px solid var(--border);
  color: #37302d;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.sidebar-nav a:last-child {
  border-bottom: 1px solid var(--border);
}

.sidebar-nav a:not(.sidebar-order-link):hover,
.sidebar-nav a:not(.sidebar-order-link):focus-visible,
.sidebar-nav a.active:not(.sidebar-order-link) {
  padding-left: 0.95rem;
  color: var(--plum);
  background: rgba(91, 58, 87, 0.045);
}

.sidebar-order-link {
  margin-top: 0.9rem;
  border: 1px solid var(--plum) !important;
  color: var(--white) !important;
  background: var(--plum) !important;
  text-align: center;
}

.sidebar-order-link:hover,
.sidebar-order-link:focus-visible,
.sidebar-order-link.active {
  background: var(--plum-dark) !important;
  transform: translateY(-1px);
}

.sidebar-footer {
  width: 100%;
  margin-top: auto;
  padding-top: 1.5rem;
  color: #6d625d;
  font-size: 0.68rem;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.sidebar-footer p {
  margin: 0 0 0.5rem;
}

.sidebar-flourish {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--copper);
  font-size: 1.1rem;
}

.sidebar-pickup {
  color: var(--plum);
  font-weight: 600;
}

.sidebar-socials {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
}

.sidebar-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    margin-top: 1.5rem;
}

.sidebar-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 2.5rem;
    height: 2.5rem;

    color: #6d625d;
    text-decoration: none;
    font-size: 1.35rem;

    border-radius: 50%;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.sidebar-socials a:hover {
    color: var(--copper);
    background: rgba(167, 101, 67, 0.08);
    transform: translateY(-2px);
}

.sidebar-socials i {
    line-height: 1;
}
.mobile-header,
.mobile-navigation,
.mobile-menu-backdrop {
  display: none;
}

/* BUTTONS */
.button {
  min-height: 48px;
  padding: 0.8rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-copper {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(181, 124, 69, 0.22);
}

.button-copper:hover,
.button-copper:focus-visible {
  background: var(--copper-light);
  color: var(--ink);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: rgba(0, 0, 0, 0.08);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.button-light {
  background: var(--ivory);
  color: var(--ink);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 100svh;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.35)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.025);
  transition:
    opacity 800ms ease,
    visibility 800ms ease,
    transform 5500ms ease;
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.72), transparent 48%),
    radial-gradient(circle at 68% 46%, transparent 0, rgba(0, 0, 0, 0.12) 60%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 4rem));
  margin-left: clamp(2rem, 6vw, 6rem);
  padding-block: 6rem;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--copper-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 650px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-controls {
  position: absolute;
  right: 2rem;
  bottom: 2.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(10, 10, 10, 0.24);
  color: var(--white);
}

.slide-dots {
  display: flex;
  gap: 0.55rem;
}

.slide-dot {
  width: 26px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
}

.slide-dot.is-active {
  width: 46px;
  background: var(--copper-light);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  z-index: 10;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--copper-light), transparent);
}

/* PAGE HERO */
.page-hero {
  min-height: 420px;
  padding: 6rem 2rem;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(91, 58, 87, 0.24), transparent 30rem),
    var(--ink);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
}

.page-hero p {
  max-width: 700px;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.72);
}

/* SHARED SECTIONS */
.section {
  width: min(var(--content-width), calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.section-heading {
  margin-bottom: 3.5rem;
}

.centered-heading {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.dark-eyebrow {
  color: var(--plum);
}

.section-heading h2,
.location-content h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child {
  max-width: 610px;
  margin: 1rem auto 0;
  color: var(--muted);
}

/* CARDS / GRIDS */
.creation-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.creation-grid {
  grid-auto-rows: 380px;
}

.creation-card,
.gallery-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.creation-card img,
.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.creation-card::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 13, 14, 0.78), transparent 55%);
}

.creation-card:hover img,
.creation-card:focus-visible img,
.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.045);
}

.creation-label,
.gallery-label {
  position: absolute;
  z-index: 2;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.4rem;
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(1.55rem, 2.2vw, 2.5rem);
  line-height: 1;
}

.gallery-card {
  min-height: 360px;
}

.centered-action {
  margin-top: 2.5rem;
  text-align: center;
}

.text-link {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--plum);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* LOCATION */
.location-strip {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(40, 24, 38, 0.91), rgba(28, 24, 27, 0.96)),
    url("../images/knoxville-background.jpg") center / cover no-repeat;
  color: var(--white);
}

.location-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 3rem));
  padding: 6rem 0;
  text-align: center;
}

.location-content p:not(.eyebrow) {
  max-width: 640px;
  margin: 1.3rem auto 2rem;
  color: rgba(255, 255, 255, 0.76);
}

.location-art {
  position: absolute;
  inset: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(209, 161, 111, 0.36);
  font-size: clamp(2rem, 6vw, 5rem);
}

/* REVIEWS */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.review-card {
  position: relative;
  min-height: 320px;
  padding: 2.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(91, 58, 87, 0.13);
  box-shadow: 0 16px 45px rgba(28, 21, 27, 0.07);
}

.review-card::before {
  content: "“";
  position: absolute;
  top: -0.35rem;
  right: 1.4rem;
  color: rgba(91, 58, 87, 0.09);
  font-family: var(--heading);
  font-size: 8rem;
}

.stars {
  margin-bottom: 1.35rem;
  color: var(--copper);
  letter-spacing: 0.15em;
}

.review-card blockquote {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.25;
}

.review-name {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* PRICING */
.pricing-grid,
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.price-card,
.seasonal-card,
.info-card {
  padding: 2.2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(91, 58, 87, 0.14);
  box-shadow: 0 16px 45px rgba(28, 21, 27, 0.06);
}

.price-card h2,
.seasonal-card h2,
.info-card h2 {
  margin-bottom: 0.7rem;
  font-family: var(--heading);
  font-size: 2.3rem;
}

.price {
  margin-bottom: 1rem;
  color: var(--plum);
  font-size: 1.3rem;
  font-weight: 700;
}

.clean-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

/* FORMS */
.form-card {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(91, 58, 87, 0.14);
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(20, 20, 20, 0.18);
  background: var(--white);
  color: var(--ink);
}

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

/* CTA */
.final-cta {
  padding: clamp(6rem, 10vw, 10rem) 1.5rem;
  background:
    radial-gradient(circle at 50% 110%, rgba(91, 58, 87, 0.7), transparent 50%),
    var(--ink);
  color: var(--white);
  text-align: center;
}

.final-cta-decoration {
  margin-bottom: 1.2rem;
  color: rgba(209, 161, 111, 0.55);
  letter-spacing: 0.8em;
}

.final-cta h2 {
  max-width: 850px;
  margin-inline: auto;
}

.final-cta > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.5rem auto 2rem;
  color: rgba(255, 255, 255, 0.72);
}

/* FOOTER */
.site-footer {
  background: #0e0e0e;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  width: min(var(--content-width), calc(100% - 3rem));
  margin: 0 auto;
  padding: 5rem 0 3rem;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 1.4rem;
}

.pickup-note {
  color: var(--copper-light);
  font-weight: 600;
}

.site-footer h3 {
  margin: 0 0 1.15rem;
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.5rem;
}

.site-footer a {
  width: fit-content;
  display: block;
  margin: 0.55rem 0;
}

.footer-bottom {
  width: min(var(--content-width), calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

/* MOBILE */
@media (max-width: 900px) {
  main,
  .site-footer {
    width: 100%;
    margin-left: 0;
  }

  .desktop-sidebar {
    display: none;
  }

  .mobile-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1100;
    height: var(--mobile-header-height);
    padding: 0.5rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:
      radial-gradient(circle at 10% 0, rgba(181, 124, 69, 0.09), transparent 160px),
      var(--parchment);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(20, 15, 13, 0.12);
  }

  .mobile-logo {
    width: 76px;
    height: 66px;
  }

  .mobile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0.7rem;
    display: grid;
    align-content: center;
    gap: 6px;
    border: 1px solid rgba(91, 58, 87, 0.5);
    background: transparent;
  }

  .mobile-menu-toggle span {
    width: 100%;
    height: 1px;
    display: block;
    background: #211d1b;
  }

  .mobile-navigation {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1200;
    width: min(86vw, 350px);
    height: 100vh;
    padding: 1.25rem 1.55rem 1.75rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background:
      repeating-linear-gradient(
        0deg,
        rgba(40, 31, 24, 0.018) 0,
        rgba(40, 31, 24, 0.018) 1px,
        transparent 1px,
        transparent 5px
      ),
      var(--parchment);
    box-shadow: 18px 0 45px rgba(0, 0, 0, 0.25);
    transform: translateX(-105%);
    transition: transform 240ms ease;
  }

  .mobile-navigation.is-open {
    transform: translateX(0);
  }

  .mobile-navigation-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .mobile-drawer-logo {
    width: 145px;
  }

  .mobile-menu-close {
    border: 0;
    color: #211d1b;
    background: transparent;
    font-family: var(--heading);
    font-size: 2.7rem;
    line-height: 1;
  }

  .mobile-navigation-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .mobile-navigation-links a {
    padding: 0.9rem 0.45rem;
    border-top: 1px solid var(--border);
    color: #37302d;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .mobile-navigation-links a:last-child {
    border-bottom: 1px solid var(--border);
  }

  .mobile-navigation-links a.active {
    color: var(--plum);
    background: rgba(91, 58, 87, 0.045);
  }

  .mobile-order-link {
    margin-top: 0.9rem;
    color: var(--white) !important;
    background: var(--plum);
    text-align: center;
  }

  .mobile-navigation-footer {
    margin-top: auto;
    padding-top: 1.8rem;
    color: #6d625d;
    font-size: 0.69rem;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1150;
    border: 0;
    background: rgba(13, 11, 12, 0.72);
    opacity: 0;
    visibility: hidden;
    transition: 220ms ease;
  }

  .mobile-menu-backdrop.is-visible {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }

  main {
    padding-top: var(--mobile-header-height);
  }

  .hero {
    min-height: calc(100svh - var(--mobile-header-height));
  }

  .hero-slide {
    min-height: calc(100svh - var(--mobile-header-height));
  }

  .creation-grid,
  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .creation-grid {
    grid-auto-rows: 360px;
  }

  .pricing-grid,
  .seasonal-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.7fr repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .section {
    width: min(100% - 2rem, var(--content-width));
    padding: 5rem 0;
  }

  .hero-slide {
    align-items: end;
    background-image:
      linear-gradient(to top, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.3)),
      var(--hero-image);
    background-position: 62% center;
  }

  .hero-content {
    width: calc(100% - 2rem);
    margin-left: 1rem;
    padding: 5rem 0 8.5rem;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-controls {
    right: 1rem;
    bottom: 1.25rem;
  }

  .scroll-cue {
    display: none;
  }

  .creation-grid {
    grid-auto-rows: 300px;
  }

  .creation-label,
  .gallery-label {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    font-size: 1.4rem;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .footer-grid {
    width: min(100% - 2rem, var(--content-width));
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    width: min(100% - 2rem, var(--content-width));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* =========================================
   CONTACT PAGE
========================================= */

.contact-section {
  display: flex;
  justify-content: center;
}

.contact-card {
  width: min(1000px, 100%);
  padding: clamp(2rem, 5vw, 4rem);
  background: #f4ecdf;
  border: 1px solid rgba(126, 75, 53, 0.25);
  box-shadow: 0 20px 60px rgba(25, 17, 16, 0.12);
}

.contact-card-heading {
  max-width: 650px;
  margin-bottom: 2.5rem;
}

.contact-card-heading h2 {
  margin: 0.4rem 0 1rem;
}

.contact-card-heading p:last-child {
  margin-bottom: 0;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;

  min-height: 100px;
  padding: 1.25rem;

  color: inherit;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(126, 75, 53, 0.2);

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.7);
  border-color: #a76543;
}

.contact-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 46px;
  width: 46px;
  height: 46px;

  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;

  color: #f4ecdf;
  background: #1d1717;
  border-radius: 50%;
}

.contact-method-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.contact-method-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  line-height: 1;
}

.contact-method-text span {
  overflow-wrap: anywhere;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  color: #6d625d;
}

.contact-note {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(126, 75, 53, 0.25);
}

.contact-note h3 {
  margin-top: 0;
}

.contact-note .button {
  margin-top: 1rem;
}

@media (max-width: 700px) {
  .contact-card {
    padding: 1.5rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-method {
    min-height: 88px;
  }
}
/* =========================================
   ORDER PAGE
========================================= */

.order-page-hero {
  position: relative;
  overflow: hidden;
}

.order-page-hero::after {
  content: "";
  position: absolute;
  right: clamp(2rem, 8vw, 8rem);
  bottom: -5rem;

  width: 15rem;
  height: 15rem;

  border: 1px solid rgba(164, 103, 71, 0.2);
  border-radius: 50%;

  pointer-events: none;
}

.order-section {
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.order-request-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);

  width: min(1150px, 100%);
  margin: 0 auto;
}

.order-request-content {
  padding: clamp(2rem, 5vw, 4rem);

  background: #f4ecdf;
  border: 1px solid rgba(126, 75, 53, 0.22);
  box-shadow: 0 24px 70px rgba(25, 17, 16, 0.1);
}

.order-request-content h2 {
  max-width: 700px;
  margin: 0.35rem 0 1rem;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.95;
}

.order-intro {
  max-width: 720px;
  margin-bottom: 2.5rem;

  font-size: 1rem;
  line-height: 1.8;
  color: #625853;
}

.order-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;

  margin-bottom: 2.5rem;
}

.order-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;

  padding: 1.25rem;

  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(126, 75, 53, 0.16);
}

.order-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 2.8rem;
  width: 2.8rem;
  height: 2.8rem;

  color: #f4ecdf;
  background: #211a1a;
  border-radius: 50%;
}

.order-highlight-icon i {
  font-size: 1.1rem;
  line-height: 1;
}

.order-highlight h3 {
  margin: 0 0 0.35rem;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  line-height: 1;
}

.order-highlight p {
  margin: 0;

  font-size: 0.86rem;
  line-height: 1.6;
  color: #6d625d;
}

.order-form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;

  min-width: 245px;
}

.order-form-button i,
.order-final-card .button i {
  font-size: 0.9rem;
}

.order-form-note {
  margin: 0.75rem 0 0;

  font-size: 0.78rem;
  color: #756a64;
}


/* ORDER POLICY */

.order-policy-card {
  align-self: start;

  padding: clamp(2rem, 4vw, 3rem);

  color: #f5ede2;
  background: #1d1717;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(25, 17, 16, 0.15);
}

.order-policy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 3rem;
  height: 3rem;
  margin-bottom: 1.4rem;

  color: #bb7958;
  border: 1px solid rgba(187, 121, 88, 0.5);
  border-radius: 50%;
}

.order-policy-icon i {
  font-size: 1.2rem;
}

.order-policy-card h2 {
  margin: 0 0 1.5rem;

  color: #f5ede2;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.order-policy-list {
  display: grid;
  gap: 1.2rem;

  margin: 0;
  padding: 0;

  list-style: none;
}

.order-policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;

  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(245, 237, 226, 0.8);
}

.order-policy-list i {
  flex: 0 0 auto;
  margin-top: 0.18rem;

  color: #bb7958;
  font-size: 1rem;
}

.order-policy-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.order-policy-contact p {
  margin: 0 0 0.5rem;

  font-size: 0.85rem;
  color: rgba(245, 237, 226, 0.65);
}

.order-policy-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  color: #d59777;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.order-policy-contact a:hover,
.order-policy-contact a:focus-visible {
  color: #f5ede2;
}


/* ORDER TYPES */

.order-types-section {
  background: #eee3d3;
}

.order-types-section .section-heading {
  width: min(1150px, 100%);
  margin: 0 auto 2.5rem;
}

.order-types-section .section-heading h2 {
  margin: 0.35rem 0 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
}

.order-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;

  width: min(1150px, 100%);
  margin: 0 auto;
}

.order-type-card {
  position: relative;
  min-height: 225px;
  padding: 2rem;

  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(126, 75, 53, 0.18);

  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.order-type-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(164, 103, 71, 0.5);
}

.order-type-number {
  display: block;
  margin-bottom: 1.6rem;

  color: #a46747;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.order-type-card h3 {
  margin: 0 0 0.75rem;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.order-type-card p {
  margin: 0;

  font-size: 0.9rem;
  line-height: 1.7;
  color: #665c56;
}


/* FINAL ORDER CTA */

.order-final-section {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.order-final-card {
  width: min(850px, 100%);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem);

  text-align: center;

  background: #f4ecdf;
  border: 1px solid rgba(126, 75, 53, 0.22);
  box-shadow: 0 24px 70px rgba(25, 17, 16, 0.1);
}

.order-final-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;

  color: #f4ecdf;
  background: #211a1a;
  border-radius: 50%;
}

.order-final-icon i {
  font-size: 1.45rem;
}

.order-final-card h2 {
  margin: 0.4rem 0 1rem;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
}

.order-final-card p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 2rem;

  line-height: 1.8;
  color: #665c56;
}

.order-final-card .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}


/* RESPONSIVE */

@media (max-width: 980px) {
  .order-request-card {
    grid-template-columns: 1fr;
  }

  .order-policy-card {
    width: 100%;
  }

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

@media (max-width: 700px) {
  .order-page-hero::after {
    display: none;
  }

  .order-request-content,
  .order-policy-card {
    padding: 1.5rem;
  }

  .order-highlights {
    grid-template-columns: 1fr;
  }

  .order-form-button {
    width: 100%;
    min-width: 0;
  }

  .order-type-grid {
    grid-template-columns: 1fr;
  }

  .order-type-card {
    min-height: auto;
  }

  .order-final-card {
    padding: 2rem 1.5rem;
  }

  .order-final-card .button {
    width: 100%;
  }
}