/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --color-bg:        #0d0d0d;
  --color-surface:   #141414;
  --color-border:    #242424;
  --color-text:      #f0ece4;
  --color-muted:     #8a8478;
  --color-gold:      #c9a96e;
  --color-gold-dim:  #9a7a4a;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1200px;
  --section-pad: clamp(5rem, 10vw, 9rem);
  --radius: 4px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
}

.section-title em {
  font-style: italic;
  color: var(--color-gold);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  border: none;
}

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

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(240,236,228,0.25);
}
.btn--ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold-dim);
}
.btn--outline:hover {
  background: var(--color-gold);
  color: #0d0d0d;
  transform: translateY(-1px);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s, padding 0.4s;
}

.nav.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  padding-block: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--color-text); }

.nav__cta {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--color-gold-dim) !important;
  border-radius: var(--radius);
  color: var(--color-gold) !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav__cta:hover {
  background: var(--color-gold) !important;
  color: #0d0d0d !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--color-bg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav__links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav__links a { font-size: 1rem; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,13,13,0.85) 0%,
    rgba(13,13,13,0.55) 60%,
    rgba(13,13,13,0.3) 100%
  );
}

/* Vignette at bottom to bleed into next section */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease-out) forwards;
}

.hero__name {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s var(--ease-out) forwards;
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(240,236,228,0.7);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s var(--ease-out) forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s var(--ease-out) forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(240,236,228,0.4);
  animation: bob 2.5s ease-in-out infinite;
  transition: color 0.2s;
}
.hero__scroll:hover { color: var(--color-gold); }

.br--desktop { display: none; }
@media (min-width: 600px) { .br--desktop { display: block; } }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding-block: var(--section-pad);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

/* Image side */
.about__image-wrap {
  position: relative;
}

.about__image-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about__image-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--color-gold-dim);
  border-radius: 2px;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
  transition: filter 0.4s;
}
.about__image:hover { filter: grayscale(0%); }

.about__image-stat {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
}

.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.4rem;
  line-height: 1.5;
}

/* Content side */
.about__content .eyebrow {
  margin-bottom: 1rem;
}

.about__content .section-title {
  margin-bottom: 2rem;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: rgba(240,236,228,0.7);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.about__body p { line-height: 1.8; }

/* Responsive */
@media (max-width: 860px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__image-wrap {
    max-width: 420px;
    margin-inline: auto;
  }
  .about__image-stat {
    right: -0.75rem;
    bottom: -0.75rem;
  }
  .about__body { max-width: 100%; }
}

/* ============================================
   WHAT I DO
   ============================================ */
.work {
  padding-block: var(--section-pad);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.work__header {
  max-width: 600px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.work__header .eyebrow { margin-bottom: 1rem; }
.work__header .section-title { margin-bottom: 1.25rem; }

.work__intro {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.work__card {
  background: var(--color-surface);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}
.work__card:hover { background: #1a1a1a; }

.work__card-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.work__card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.work__card-title--large {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
}

.work__card-title--large em {
  font-style: italic;
  color: var(--color-gold);
}

.work__card-body {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.25rem;
}

.work__card-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-dim);
  margin-top: auto;
}

.work__card--cta {
  background: #111;
}
.work__card--cta:hover { background: #151515; }

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

/* ============================================
   GOLF
   ============================================ */
.golf {
  padding-bottom: var(--section-pad);
}

.golf__quote-band {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: clamp(3rem, 6vw, 5rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.golf__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(240,236,228,0.85);
  line-height: 1.6;
  max-width: 820px;
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--color-gold);
}

.golf__quote-mark {
  display: none;
}

.golf__quote-attr {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 1.25rem;
}

.golf__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

/* Images */
.golf__images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}

.golf__img-main {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.golf__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.golf__img-main:hover img { transform: scale(1.03); }

.golf__img-secondary {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
}

.golf__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.golf__img-secondary:hover img { transform: scale(1.03); }

.golf__img-caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.6);
  background: rgba(13,13,13,0.6);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* Content */
.golf__content .eyebrow { margin-bottom: 1rem; }
.golf__content .section-title { margin-bottom: 2rem; }

.golf__text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: rgba(240,236,228,0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

@media (max-width: 860px) {
  .golf__body {
    grid-template-columns: 1fr;
  }
  .golf__images {
    position: static;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.insta {
  padding-block: var(--section-pad);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.insta__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.insta__header .eyebrow { margin-bottom: 0.75rem; }

.insta__follow-btn {
  flex-shrink: 0;
  align-self: center;
}

/* Grid */
.insta__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}

.insta__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-border);
  cursor: pointer;
}

.insta__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
  display: block;
}

.insta__item:hover img { transform: scale(1.06); }

.insta__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.insta__item:hover .insta__item-overlay { opacity: 1; }

.insta__item-overlay svg {
  color: var(--color-text);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
}

/* Skeleton shimmer */
.insta__skeleton {
  aspect-ratio: 1;
  background: linear-gradient(90deg, var(--color-border) 25%, #1e1e1e 50%, var(--color-border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Footer */
.insta__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.insta__note {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding-block: var(--section-pad);
  border-top: 1px solid var(--color-border);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.contact__content .eyebrow { margin-bottom: 1rem; }
.contact__content .section-title { margin-bottom: 1.5rem; }

.contact__intro {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.contact__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.contact__link:hover {
  border-color: var(--color-gold-dim);
  background: rgba(201,169,110,0.05);
}

.contact__link-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact__link span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact__link strong {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.contact__link small {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.form__input {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form__input::placeholder { color: var(--color-muted); opacity: 0.6; }

.form__input:focus {
  border-color: var(--color-gold-dim);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form__submit { align-self: flex-start; }

.form__success {
  font-size: 0.875rem;
  color: var(--color-gold);
  min-height: 1.2em;
}

@media (max-width: 860px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__intro { max-width: 100%; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding-block: 2rem;
  background: var(--color-surface);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-gold);
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

.footer__socials {
  display: flex;
  gap: 1.25rem;
}

.footer__socials a {
  color: var(--color-muted);
  transition: color 0.2s;
}
.footer__socials a:hover { color: var(--color-gold); }

/* ============================================
   SECTION STUBS (temporary)
   ============================================ */
.section-stub {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
