/* ========================================
   Masonry Arts — Styles
   Warm stone palette · Artisan craftsmanship
   ======================================== */

:root {
  --color-cream: #faf8f3;
  --color-limestone: #f0ece0;
  --color-sandstone: #d9cfb0;
  --color-gold: #b8954a;
  --color-gold-dark: #8a6e34;
  --color-charcoal: #3a3326;
  --color-charcoal-light: #5c5343;
  --color-dark: #1f1b14;
  --color-text: #2d271e;
  --color-text-light: #6b6254;
  --color-border: #d4cbb5;
  --color-overlay: rgba(28, 22, 14, 0.55);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 4px;
  --radius-lg: 8px;
  --max-width: 1200px;
  --header-height: 80px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.25;
}

h1 { font-size: 2.75rem; letter-spacing: -0.5px; }
h2 { font-size: 2.15rem; letter-spacing: -0.3px; }
h3 { font-size: 1.55rem; }

a {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

/* ---- Header & Navigation ---- */
.site-header {
  background: linear-gradient(180deg, #faf8f3 0%, #f3efe5 100%);
  border-bottom: 3px solid var(--color-sandstone);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  min-height: var(--header-height);
}

.logo-link {
  display: block;
  flex-shrink: 0;
}

.logo-img {
  height: 60px;
  width: auto;
}

/* Desktop Nav */
.nav-list {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-charcoal);
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-list a:hover {
  background: var(--color-limestone);
  color: var(--color-gold-dark);
}

.nav-list a.active {
  background: var(--color-gold);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- Main Content ---- */
main {
  flex: 1;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--color-overlay) 0%,
    rgba(28, 22, 14, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  max-width: 750px;
}

.hero-content h1 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  color: var(--color-sandstone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(180deg, #c9a24e 0%, #a07c32 100%);
  color: #fff;
  border-color: var(--color-gold-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #d4af5e 0%, #b08a3c 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--color-charcoal);
  color: var(--color-cream);
  border-color: var(--color-charcoal);
}

.btn-dark:hover {
  background: var(--color-dark);
  color: var(--color-cream);
  transform: translateY(-1px);
}

/* ---- Section Dividers ---- */
.section-divider {
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-sandstone) 20%,
    var(--color-gold) 50%,
    var(--color-sandstone) 80%,
    transparent 100%
  );
}

/* ---- Content Sections ---- */
.section {
  padding: 5rem 1.5rem;
}

.section-alt {
  background: var(--color-limestone);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ---- Intro Section ---- */
.intro-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-charcoal-light);
}

.intro-text p {
  margin-bottom: 1rem;
}

/* ---- Trust Section ---- */
.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.trust-list li {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-list li::before {
  content: "✦";
  color: var(--color-gold);
  font-size: 0.9rem;
}

/* ---- About Hero ---- */
.about-hero {
  background: var(--color-dark);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.about-hero h1 {
  color: var(--color-gold);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.about-hero p {
  color: var(--color-sandstone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-style: italic;
}

/* ---- About Content ---- */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
}

.about-content h3 {
  color: var(--color-gold-dark);
  margin: 2rem 0 0.75rem;
  font-size: 1.3rem;
}

.about-content p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.about-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.about-content ul li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--color-text);
}

.about-content ul li::before {
  content: "▪";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: var(--shadow-sm);
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}

/* ---- Vimeo Section ---- */
.video-section {
  text-align: center;
  margin-top: 3rem;
}

.video-section h2 {
  margin-bottom: 1.5rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
}

/* ---- Contact ---- */
.contact-hero {
  background: var(--color-dark);
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
}

.contact-hero h1 {
  color: var(--color-gold);
}

.contact-card {
  background: #fff;
  max-width: 520px;
  margin: -2rem auto 0;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  position: relative;
}

.contact-card h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--color-text);
}

.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-info a {
  font-weight: 600;
}

/* ---- Privacy ---- */
.privacy-content {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-content h2 {
  margin: 2rem 0 0.75rem;
  color: var(--color-charcoal);
}

.privacy-content h3 {
  margin: 1.5rem 0 0.5rem;
  color: var(--color-gold-dark);
  font-size: 1.15rem;
}

.privacy-content p {
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.privacy-content .last-updated {
  color: var(--color-text-light);
  font-style: italic;
  font-size: 0.95rem;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--color-dark);
  color: var(--color-sandstone);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand h3 {
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--color-sandstone);
  font-size: 0.95rem;
}

.footer-contact h4,
.footer-links h4 {
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.footer-contact p {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--color-sandstone);
}

.footer-contact a:hover {
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: var(--color-sandstone);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-charcoal-light);
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.footer-bottom a {
  color: var(--color-sandstone);
}

.footer-bottom a:hover {
  color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.3rem; }

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

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

  .about-content ul {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 102;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-cream);
    border-bottom: 2px solid var(--color-sandstone);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 101;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    padding: 0.5rem 1rem;
  }

  .nav-list a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 3rem 1.25rem;
  }

  .contact-card {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

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

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

  .gallery-grid img {
    height: 220px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .logo-img {
    height: 48px;
  }
}