/* ======================================
   VARIABLES
====================================== */

:root {
  --bg: #faf8f4;
  --paper: #ffffff;
  --text: #2b2b2b;
  --muted: #6f6a63;
  --accent: #9a7b4f;
  --border: #e4ded4;

  --heading: Georgia, "Times New Roman", serif;
  --body: Arial, sans-serif;
}

/* ======================================
     GLOBAL RESET
  ====================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

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

/* ======================================
     TYPOGRAPHY
  ====================================== */

h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: normal;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin: 0 0 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0 0 18px;
}

h3 {
  font-size: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 0.78rem;
  margin-bottom: 12px;
}

/* ======================================
     HEADER / NAVIGATION
  ====================================== */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  padding: 20px 8%;

  border-bottom: 1px solid var(--border);

  background: rgba(247, 244, 238, 0.95);
  backdrop-filter: blur(10px);
}

.logo {
  font-family: var(--heading);
  font-size: 1.3rem;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-button {
  border: 1px solid var(--accent);
  padding: 10px 18px;
}

/* ======================================
     HERO
  ====================================== */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: center;

  padding-top: 120px;
  background: #f6f3ee;
}

.hero-image img {
  height: 80vh;
  object-fit: cover;
}

.hero-content {
  padding: 8%;
  max-width: 620px;
}

/* ======================================
     BUTTONS
  ====================================== */

.button-group {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 13px 24px;
  border: 1px solid var(--accent);
  cursor: pointer;
}

.button-outline {
  background: transparent;
  color: var(--text);
}

/* ======================================
     GENERIC SECTIONS
  ====================================== */

.section {
  padding: 90px 6%;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.center {
  text-align: center;
  margin-top: 42px;
}

/* ======================================
     ABOUT
  ====================================== */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ======================================
     TESTIMONIALS
  ====================================== */

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

.testimonial-grid article {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 32px;
}

.testimonial-grid p {
  font-family: var(--heading);
  font-size: 1.35rem;
}

.testimonial-grid span {
  color: var(--muted);
}

/* ======================================
     GALLERY
  ====================================== */

.full-gallery,
.gallery {
  padding: 110px 6% 90px;
  background: var(--bg);
}

.gallery-category {
  margin-top: 80px;
}

.gallery-category-heading {
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 38px;
  max-width: 1200px;
  margin: 0 auto;
}
.center-piece {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 500px;
  width: 100%;
  margin-bottom: 50px;
}
.gallery-grid.portrait-grid.four-piece-grid {
  display: grid;
  grid-template-columns: repeat(2, 380px);
  justify-content: center;
  gap: 38px;
}
.landscape-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 350px));
  justify-content: center;
  gap: 38px;
}

/* Framed Artwork */
.art-frame:hover {
  transform: translateY(-6px) scale(1.02);
}
.art-frame {
  /* background: linear-gradient(135deg, #8f7547, #c4ab78, #8a6f43); */
  background: #2b2b2b;
  padding: 10px;

  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 16px 30px rgba(0, 0, 0, 0.15);

  transition: all 0.3s ease;
}
.art-frame:hover {
  transform: translateY(-6px);
}
.art-frame img {
  background: #f8f5ee;

  border: 22px solid #f8f5ee;

  outline: 1px solid #d8d0c2;

  display: block;
}
.gallery-grid figcaption {
  margin-top: 14px;

  color: #2b2b2b; /* dark charcoal */

  font-family: var(--heading);

  font-size: 1.1rem;

  line-height: 1.4;
}
.gallery-grid figure {
  margin: 0;
  text-align: center;
  /* background: linear-gradient(135deg, #9f8555, #c5aa76, #8a6f42); */
  padding: 12px;

  border: 1px solid #111;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12), 0 18px 40px rgba(0, 0, 0, 0.18);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-grid figure:hover {
  transform: translateY(-8px) scale(1.03);

  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2), 0 30px 60px rgba(0, 0, 0, 0.25);
}

.gallery-grid img {
  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;
  object-position: center;

  background: #f8f5ee;

  border: 18px solid #f8f5ee;
  outline: 2px solid #d8d0c2;
}

.gallery-grid figcaption {
  display: block;
  margin-top: 15px;
  padding: 10px 0;

  color: #2b2b2b;
  font-family: var(--heading);
  font-size: 1.3rem;

  /* background: yellow; */
}
.gallery-grid figure.portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-grid figure.landscape img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.portrait-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 75px;
}

.landscape-grid {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  margin-top: 42px;
}

.portrait-grid img {
  height: 420px;
  object-fit: contain;
}

.landscape-grid img {
  height: 300px;
  object-fit: contain;
}
/* ======================================
     PROCESS
  ====================================== */

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

.process-grid article {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 32px;
}

.process-grid span {
  color: var(--accent);
  font-family: var(--heading);
  font-size: 2rem;
}

/* ======================================
     PRICING
  ====================================== */

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

.pricing-grid article {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 32px;
}

.price {
  font-family: var(--heading);
  font-size: 2rem;
  color: var(--accent);
}

.pricing-note {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--muted);
  font-style: italic;
}

.founding-card,
.founding-text {
  text-align: center;
}

.founding-text {
  max-width: 550px;
  margin: 0 auto 20px;
  color: var(--muted);
}

/* ======================================
     CONTACT
  ====================================== */

.contact {
  background: #f1ece3;
}

.contact-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 32px;
}

form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

label {
  display: grid;
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--border);
  font: inherit;
  background: white;
}

/* ======================================
     FOOTER
  ====================================== */

.site-footer {
  background: #f8f6f2;
  padding: 3rem 1rem;
  text-align: center;
  border-top: 1px solid #e5e0d8;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.site-footer h3 {
  margin-bottom: 0.75rem;
}

.site-footer p {
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.footer-nav a,
.footer-contact a {
  text-decoration: none;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}
/* ======================================
     RESPONSIVE
  ====================================== */

@media (max-width: 850px) {
  .site-header {
    display: block;
  }

  .nav {
    margin-top: 18px;
    flex-wrap: wrap;
    gap: 16px;
  }

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

  .hero-image img {
    height: auto;
  }

  .testimonial-grid,
  .gallery-grid,
  .process-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .button-group {
    flex-direction: column;
  }

  .gallery-grid figure:hover {
    transform: none;
  }
}
/* ======================================
     Thank you Page
  ====================================== */
.thank-you-image {
  max-width: 250px;
  width: 100%;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
