/* =====================
   ANGUS DONALDSON — MODERN REDESIGN
   ===================== */

:root {
  --ink: #1a1208;
  --paper: #faf8f4;
  --gold: #c8991a;
  --gold-light: #f5e8b8;
  --gold-dark: #9a7310;
  --warm-white: #fffdf9;
  --mid: #6b5f4a;
  --light-mid: #e8e2d4;
  --accent: #c8991a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 18, 8, 0.1);
  --shadow-lg: 0 12px 48px rgba(26, 18, 8, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-mid);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Pinyon Script', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 2.1rem;
  color: var(--ink);
}

.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mid);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a.active {
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: #fff !important;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---- HERO ---- */
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: max-content;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.hero-logo .logo-main {
  font-family: 'Pinyon Script', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 7vw, 4.8rem);
  color: var(--ink);
}

.hero-logo .logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-dark);
  margin-top: 0.35rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-info {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.info-chip {
  background: var(--gold-light);
  border: 1px solid #ddc878;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 500px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  border: 2px solid var(--light-mid);
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-light);
}

/* ---- SERVICES STRIP ---- */
.services-strip {
  background: var(--ink);
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
  flex-wrap: wrap;
}

.services-strip::-webkit-scrollbar { display: none; }

.service-pill {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(200, 153, 26, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.service-pill:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* ---- SECTION TAG ---- */
.section-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  background: var(--gold-light);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

/* ---- ABOUT ---- */
.about {
  background: var(--warm-white);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.about-text p {
  color: var(--mid);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.about-text .btn-primary {
  margin-top: 1rem;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-height: 420px;
  object-fit: contain;
  background: #f0ece3;
  padding: 1rem;
}

/* ---- HISTORY ---- */
.history-header {
  text-align: center;
  margin-bottom: 3rem;
}

.history-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-top: 0.5rem;
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.history-text p {
  color: var(--mid);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.history-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
}

.img-caption {
  font-size: 0.78rem;
  color: var(--mid);
  margin-top: 0.75rem;
  font-style: italic;
  text-align: center;
}

/* ---- MAP ---- */
.map-section {
  background: var(--warm-white);
}

.map-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.map-desc {
  color: var(--mid);
  margin-bottom: 2rem;
  max-width: 600px;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-mid);
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--ink);
  padding: 5rem 0 4rem;
  color: var(--paper);
}

.page-hero .section-tag {
  background: rgba(200, 153, 26, 0.2);
  color: var(--gold);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fff;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(250, 248, 244, 0.75);
  max-width: 560px;
}

/* ---- SERVICES FULL ---- */
.services-full .container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-mid);
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-card.reverse {
  grid-template-columns: 1fr 240px;
}

.service-card.reverse .service-img {
  order: 2;
}

.service-card.reverse .service-info {
  order: 1;
}

.service-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--light-mid);
}

.service-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.service-info p {
  color: var(--mid);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.service-list {
  list-style: none;
  margin-bottom: 1.25rem;
}

.service-list li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--mid);
  font-size: 0.95rem;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ---- PDF PAGE ---- */
.pdf-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.pdf-intro.card {
  background: var(--gold-light);
  border: 1px solid #ddc878;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  font-size: 1rem;
  color: var(--ink);
}

.pdf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.pdf-box {
  background: var(--warm-white);
  border: 1px solid var(--light-mid);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.pdf-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.pdf-box h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid);
  margin: 1.25rem 0 0.5rem;
}

.pdf-box ul {
  list-style: none;
  margin-bottom: 0.5rem;
}

.pdf-box ul li {
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--mid);
}

.pdf-box ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.checklist li {
  padding: 0.6rem 0 0.6rem 1.5rem !important;
  border-bottom: 1px solid var(--light-mid);
}

.checklist li::before {
  content: '✓' !important;
  font-size: 0.8rem;
  top: 0.7rem;
}

.pdf-box a {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--ink);
  color: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2rem 3rem;
}

.footer-brand .logo-main {
  color: #fff;
  font-size: 2.1rem;
}

.footer-brand .logo-sub {
  color: var(--gold);
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(250, 248, 244, 0.7);
  transition: color 0.2s;
}

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

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.7);
  margin-bottom: 0.3rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 244, 0.1);
  padding: 1.25rem 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(250, 248, 244, 0.4);
}

/* ---- SCROLL ANIMATION ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .hero-image { order: -1; }

  .grid-2,
  .history-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-card,
  .service-card.reverse {
    grid-template-columns: 1fr;
  }

  .service-card.reverse .service-img,
  .service-card.reverse .service-info {
    order: unset;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 2rem 2rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--light-mid);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1rem;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }

  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .hero-title { font-size: 2.4rem; }
  .services-strip { justify-content: flex-start; }
}
