    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased
    }

    :root {
      --cream: #FAF8F4;
      --cream2: #F3EFE8;
      --dark: #1E1A16;
      --dark2: #2A2420;
      --gold: #B8873A;
      --gold-light: #E8D4A8;
      --gold-dim: rgba(184, 135, 58, 0.12);
      --text: #2A2420;
      --muted: #7A7068;
      --border: #E0D8CE;
      --white: #FFFFFF;
      --serif: 'Playfair Display', serif;
      --sans: 'Jost', sans-serif;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--cream);
      color: var(--text);
      font-family: var(--sans);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all .4s
    }

    nav.scrolled {
      background: rgba(250, 248, 244, .96);
      backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 var(--border)
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      padding: 0 4%
    }

    .logo {
      font-family: var(--serif);
      font-size: 1.35rem;
      color: var(--white);
      font-weight: 500;
      letter-spacing: .5px;
      text-decoration: none;
      transition: color .3s
    }

    nav.scrolled .logo {
      color: var(--dark)
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none
    }

    .nav-links a {
      font-size: .78rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .75);
      text-decoration: none;
      transition: color .3s;
      font-weight: 400
    }

    nav.scrolled .nav-links a {
      color: var(--muted)
    }

    .nav-links a:hover {
      color: var(--gold-light)
    }

    nav.scrolled .nav-links a:hover {
      color: var(--gold)
    }

    .nav-cta {
      background: var(--gold);
      color: var(--white);
      font-family: var(--sans);
      font-size: .75rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 9px 20px;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      font-weight: 400;
      transition: background .2s
    }

    .nav-cta:hover {
      background: #9e7230
    }

    /* HERO */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 620px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(20, 16, 12, .7) 0%, rgba(20, 16, 12, .35) 50%, rgba(20, 16, 12, .7) 100%)
    }

    .hero-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1
    }

    .hero-content {
      position: relative;
      text-align: center;
      color: var(--white);
      padding: 0 5%;
      max-width: 820px
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .68rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold-light);
      border: 1px solid rgba(232, 212, 168, .3);
      padding: 5px 18px;
      border-radius: 20px;
      margin-bottom: 2rem
    }

    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(2.6rem, 6vw, 4.6rem);
      line-height: 1.1;
      font-weight: 500;
      margin-bottom: 1rem;
      letter-spacing: -.5px
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-light)
    }

    .hero-sub {
      font-size: .88rem;
      letter-spacing: 1.5px;
      color: rgba(255, 255, 255, .6);
      margin-bottom: 2.8rem;
      text-transform: uppercase
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap
    }

    .btn-gold {
      background: var(--gold);
      color: var(--white);
      padding: 13px 30px;
      border: none;
      border-radius: 2px;
      font-family: var(--sans);
      font-size: .78rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s;
      font-weight: 400
    }

    .btn-gold:hover {
      background: #9e7230
    }

    .btn-outline {
      background: none;
      color: var(--white);
      padding: 12px 28px;
      border: 1px solid rgba(255, 255, 255, .45);
      border-radius: 2px;
      font-family: var(--sans);
      font-size: .78rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s;
      font-weight: 400
    }

    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, .07)
    }

    .hero-scroll {
      position: absolute;
      bottom: 2.2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .4);
      font-size: .65rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      animation: bob 2.2s ease-in-out infinite
    }

    .scroll-line {
      width: 1px;
      height: 36px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, .45), transparent)
    }

    @keyframes bob {

      0%,
      100% {
        transform: translateX(-50%) translateY(0)
      }

      50% {
        transform: translateX(-50%) translateY(7px)
      }
    }

    /* TRUST BAR */
    .trust-bar {
      background: var(--dark);
      overflow: hidden
    }

    .trust-track {
      display: flex;
      gap: 3rem;
      padding: 1rem 2rem;
      white-space: nowrap;
      animation: marquee 22s linear infinite
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: .6rem;
      font-size: .72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      flex-shrink: 0
    }

    .trust-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0
    }

    @keyframes marquee {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    /* SECTION */
    .section {
      padding: 90px 5%;
      max-width: 1200px;
      margin: 0 auto
    }

    .sec-label {
      font-size: .68rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .8rem;
      display: flex;
      align-items: center;
      gap: 12px
    }

    .sec-label::after {
      content: '';
      height: 1px;
      background: var(--border);
      width: 50px
    }

    .sec-title {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 3.5vw, 2.9rem);
      line-height: 1.18;
      margin-bottom: .5rem;
      font-weight: 500
    }

    .sec-sub {
      color: var(--muted);
      max-width: 520px;
      font-size: .9rem;
      line-height: 1.8
    }

    /* ABOUT */
    .about-bg {
      background: var(--white)
    }

    .about-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 90px 5%;
      display: grid;
      grid-template-columns: 5fr 6fr;
      gap: 5rem;
      align-items: center
    }

    .about-img-wrap {
      position: relative
    }

    .about-img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: 2px;
      display: block
    }

    .about-badge {
      position: absolute;
      bottom: -1.2rem;
      right: -1.2rem;
      background: var(--gold);
      color: var(--white);
      padding: 1.4rem 1.6rem;
      text-align: center
    }

    .about-badge .n {
      font-family: var(--serif);
      font-size: 2rem;
      display: block;
      line-height: 1;
      font-weight: 500
    }

    .about-badge .l {
      font-size: .62rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      opacity: .85;
      margin-top: .3rem;
      display: block
    }

    .about-text blockquote {
      border-left: 2px solid var(--gold);
      padding-left: 1.3rem;
      margin: 1.4rem 0 1.8rem;
      font-family: var(--serif);
      font-style: italic;
      font-size: 1.05rem;
      color: var(--dark2);
      line-height: 1.7
    }

    /* PORTFOLIO */
    .port-bg {
      background: var(--cream)
    }

    .port-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 6px;
      margin-top: 2.8rem
    }

    .p-card {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      cursor: pointer;
      background: var(--dark)
    }

    .p-card.tall {
      grid-row: span 2
    }

    .p-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .7s ease
    }

    .p-card.tall img {
      min-height: 500px
    }

    .p-card:not(.tall) img {
      aspect-ratio: 4/3
    }

    .p-card:hover img {
      transform: scale(1.06)
    }

    .p-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20, 16, 12, .82) 0%, transparent 55%);
      opacity: 0;
      transition: opacity .4s
    }

    .p-card:hover .p-overlay {
      opacity: 1
    }

    .p-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.2rem 1rem;
      transform: translateY(6px);
      opacity: 0;
      transition: all .35s;
      color: var(--white)
    }

    .p-card:hover .p-info {
      opacity: 1;
      transform: translateY(0)
    }

    .p-couple {
      font-family: var(--serif);
      font-size: .95rem;
      font-style: italic;
      display: block
    }

    .p-type {
      font-size: .65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-top: 2px;
      display: block
    }

    /* FILMS */
    .films-bg {
      background: var(--dark);
      color: var(--white)
    }

    .films-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 90px 5%
    }

    .films-inner .sec-label {
      color: var(--gold-light)
    }

    .films-inner .sec-label::after {
      background: rgba(255, 255, 255, .1)
    }

    .films-inner .sec-title {
      color: var(--white)
    }

    .films-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 3rem
    }

    .film-card {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      cursor: pointer;
      background: #111
    }

    .film-card img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      opacity: .72;
      display: block;
      transition: opacity .35s, transform .5s
    }

    .film-card:hover img {
      opacity: .88;
      transform: scale(1.04)
    }

    .film-over {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: .8rem
    }

    .play-btn {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .12);
      border: 1.5px solid rgba(255, 255, 255, .5);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s;
      backdrop-filter: blur(6px)
    }

    .film-card:hover .play-btn {
      background: var(--gold);
      border-color: var(--gold);
      transform: scale(1.1)
    }

    .play-btn svg {
      width: 18px;
      height: 18px;
      fill: white;
      margin-left: 3px
    }

    .film-meta {
      text-align: center;
      padding: 0 1rem
    }

    .film-couple {
      font-family: var(--serif);
      font-size: 1rem;
      font-style: italic;
      color: var(--white)
    }

    .film-loc {
      font-size: .65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-top: 3px;
      display: block
    }

    .film-dur {
      position: absolute;
      top: .7rem;
      right: .7rem;
      background: rgba(0, 0, 0, .55);
      color: rgba(255, 255, 255, .75);
      font-size: .65rem;
      padding: 3px 8px;
      border-radius: 2px
    }

    /* WHY */
    .why-bg {
      background: var(--white)
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
      margin-top: 2.8rem
    }

    .why-card {
      padding: 2rem;
      border: 1px solid var(--border);
      border-radius: 4px;
      transition: border-color .3s, box-shadow .3s
    }

    .why-card:hover {
      border-color: var(--gold-light);
      box-shadow: 0 8px 40px rgba(184, 135, 58, .07)
    }

    .why-icon {
      font-size: 1.6rem;
      margin-bottom: 1rem
    }

    .why-card h3 {
      font-family: var(--serif);
      font-size: 1.15rem;
      margin-bottom: .6rem;
      font-weight: 500
    }

    .why-card p {
      font-size: .86rem;
      color: var(--muted);
      line-height: 1.75
    }

    /* TESTIMONIALS */
    .testi-bg {
      background: var(--cream2)
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      margin-top: 2.5rem
    }

    .testi-card {
      background: var(--white);
      border-radius: 4px;
      padding: 1.8rem;
      border: 1px solid var(--border)
    }

    .testi-stars {
      color: var(--gold);
      font-size: .85rem;
      margin-bottom: .8rem;
      letter-spacing: 1px
    }

    .testi-quote {
      font-family: var(--serif);
      font-style: italic;
      font-size: .98rem;
      line-height: 1.75;
      color: var(--dark2);
      margin-bottom: 1.4rem;
      padding-top: .6rem;
      border-top: 1px solid var(--border);
      position: relative
    }

    .open-q {
      font-size: 2.5rem;
      color: var(--gold-light);
      position: absolute;
      top: -1.2rem;
      left: -.3rem;
      font-family: var(--serif);
      line-height: 1
    }

    .testi-person {
      display: flex;
      align-items: center;
      gap: .8rem
    }

    .testi-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gold-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--serif);
      font-size: 1rem;
      color: var(--gold);
      border: 1px solid var(--gold-light);
      flex-shrink: 0
    }

    .testi-name {
      font-size: .84rem;
      font-weight: 500;
      color: var(--dark);
      display: block
    }

    .testi-event {
      font-size: .73rem;
      color: var(--muted);
      letter-spacing: .5px
    }

    .g-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      margin-top: 1.8rem;
      color: var(--muted);
      font-size: .8rem;
      background: var(--white);
      padding: 8px 14px;
      border-radius: 20px;
      border: 1px solid var(--border)
    }

    .g-stars {
      color: #F4B400
    }

    /* PROCESS */
    .process-bg {
      background: var(--dark)
    }

    .process-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 90px 5%
    }

    .process-inner .sec-label {
      color: var(--gold-light)
    }

    .process-inner .sec-label::after {
      background: rgba(255, 255, 255, .1)
    }

    .process-inner .sec-title {
      color: var(--white)
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 3.5rem;
      position: relative
    }

    .steps::before {
      content: '';
      position: absolute;
      top: 23px;
      left: 12%;
      right: 12%;
      height: 1px;
      background: rgba(255, 255, 255, .08)
    }

    .step {
      text-align: center;
      padding: 0 1.2rem;
      position: relative
    }

    .step-n {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--white);
      font-family: var(--serif);
      font-size: 1.15rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.4rem;
      position: relative;
      z-index: 1;
      font-weight: 500
    }

    .step-t {
      font-family: var(--serif);
      font-size: .98rem;
      color: var(--white);
      margin-bottom: .5rem;
      font-weight: 500
    }

    .step-d {
      font-size: .8rem;
      color: rgba(255, 255, 255, .45);
      line-height: 1.65
    }

    /* PACKAGES */
    .pkg-bg {
      background: var(--cream)
    }

    .pkg-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
      margin-top: 3rem;
      align-items: start
    }

    .pkg-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
      transition: box-shadow .3s
    }

    .pkg-card:hover {
      box-shadow: 0 16px 60px rgba(0, 0, 0, .07)
    }

    .pkg-card.featured {
      border-color: var(--gold);
      position: relative
    }

    .pkg-badge {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--white);
      font-size: .62rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 18px;
      border-radius: 0 0 4px 4px;
      white-space: nowrap
    }

    .pkg-head {
      padding: 2rem 1.8rem 1.4rem;
      border-bottom: 1px solid var(--border)
    }

    .pkg-tier {
      font-size: .65rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .5rem
    }

    .pkg-name {
      font-family: var(--serif);
      font-size: 1.35rem;
      margin-bottom: .5rem;
      font-weight: 500
    }

    .pkg-price {
      font-family: var(--serif);
      font-size: 1.75rem;
      color: var(--dark)
    }

    .pkg-price sub {
      font-size: .8rem;
      font-family: var(--sans);
      color: var(--muted);
      font-weight: 300
    }

    .pkg-note {
      font-size: .76rem;
      color: var(--muted);
      margin-top: .3rem
    }

    .pkg-body {
      padding: 1.4rem 1.8rem
    }

    .pkg-list {
      list-style: none;
      margin-bottom: 1.6rem
    }

    .pkg-list li {
      font-size: .84rem;
      color: var(--text);
      padding: 6px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: .55rem
    }

    .pkg-list li:last-child {
      border: none
    }

    .pkg-list li::before {
      content: '✓';
      color: var(--gold);
      font-size: .75rem;
      flex-shrink: 0
    }

    .wa-btn {
      width: 100%;
      background: #25D366;
      color: var(--white);
      border: none;
      border-radius: 3px;
      padding: 12px;
      font-family: var(--sans);
      font-size: .75rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      font-weight: 400;
      transition: background .2s
    }

    .wa-btn:hover {
      background: #1da855
    }

    .pkg-alt {
      display: block;
      text-align: center;
      color: var(--muted);
      font-size: .76rem;
      margin-top: .7rem;
      text-decoration: none;
      letter-spacing: .5px
    }

    .pkg-alt:hover {
      color: var(--gold)
    }

    /* INSTAGRAM */
    .insta-bg {
      background: var(--white)
    }

    .insta-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 4px;
      margin-top: 2.5rem
    }

    .insta-item {
      aspect-ratio: 1;
      position: relative;
      overflow: hidden;
      cursor: pointer
    }

    .insta-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s
    }

    .insta-item:hover img {
      transform: scale(1.1)
    }

    .insta-hover {
      position: absolute;
      inset: 0;
      background: rgba(20, 16, 12, .42);
      opacity: 0;
      transition: opacity .3s;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.3rem
    }

    .insta-item:hover .insta-hover {
      opacity: 1
    }

    /* FAQ */
    .faq-bg {
      background: var(--cream2)
    }

    .faq-wrap {
      max-width: 700px;
      margin: 2.8rem auto 0
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      margin-bottom: .55rem;
      overflow: hidden;
      transition: border-color .25s
    }

    .faq-item.open {
      border-color: var(--gold-light)
    }

    .faq-q {
      padding: 1.15rem 1.4rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .9rem;
      font-weight: 400;
      color: var(--dark2);
      user-select: none
    }

    .faq-ico {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all .3s;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1
    }

    .faq-item.open .faq-ico {
      background: var(--gold);
      border-color: var(--gold);
      color: white;
      transform: rotate(45deg)
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease
    }

    .faq-a-in {
      padding: 0 1.4rem 1.2rem;
      font-size: .86rem;
      color: var(--muted);
      line-height: 1.8;
      border-top: 1px solid var(--border)
    }

    .faq-item.open .faq-a {
      max-height: 200px
    }

    /* FORM */
    .form-bg {
      background: var(--dark)
    }

    .form-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 90px 5%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start
    }

    .form-left .sec-label {
      color: var(--gold-light)
    }

    .form-left .sec-label::after {
      background: rgba(255, 255, 255, .1)
    }

    .form-left .sec-title {
      color: var(--white)
    }

    .form-left p {
      color: rgba(255, 255, 255, .5);
      font-size: .88rem;
      margin-top: 1rem;
      line-height: 1.8
    }

    .cinfo {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: .9rem
    }

    .cinfo-item {
      display: flex;
      align-items: center;
      gap: .8rem;
      color: rgba(255, 255, 255, .55);
      font-size: .84rem
    }

    .cinfo-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
      flex-shrink: 0
    }

    form {
      display: flex;
      flex-direction: column;
      gap: .9rem
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .9rem
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: .4rem
    }

    .field label {
      font-size: .68rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .38)
    }

    .field input,
    .field textarea,
    .field select {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 3px;
      padding: 12px 14px;
      color: var(--white);
      font-family: var(--sans);
      font-size: .9rem;
      font-weight: 300;
      outline: none;
      transition: border-color .3s;
      -webkit-appearance: none
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(255, 255, 255, .22)
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: rgba(184, 135, 58, .55)
    }

    .field textarea {
      resize: vertical;
      min-height: 95px
    }

    .field select {
      color: rgba(255, 255, 255, .65)
    }

    .field select option {
      background: #1e1a16
    }

    .form-submit {
      background: var(--gold);
      color: var(--white);
      border: none;
      border-radius: 3px;
      padding: 13px 28px;
      font-family: var(--sans);
      font-size: .8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s;
      font-weight: 400
    }

    .form-submit:hover {
      background: #9e7230
    }

    .form-note {
      font-size: .72rem;
      color: rgba(255, 255, 255, .28);
      margin-top: .4rem;
      text-align: center
    }

    /* FOOTER */
    footer {
      background: var(--dark2);
      padding: 2.5rem 5%;
      color: rgba(255, 255, 255, .38)
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem
    }

    .footer-logo {
      font-family: var(--serif);
      font-size: 1.2rem;
      color: rgba(255, 255, 255, .65)
    }

    .flinks {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap
    }

    .flinks a {
      color: rgba(255, 255, 255, .38);
      text-decoration: none;
      font-size: .76rem;
      letter-spacing: .5px;
      transition: color .2s
    }

    .flinks a:hover {
      color: var(--gold)
    }

    .fsoc {
      display: flex;
      gap: .8rem
    }

    .fsoc-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .38);
      text-decoration: none;
      font-size: .75rem;
      transition: all .2s
    }

    .fsoc-btn:hover {
      border-color: var(--gold);
      color: var(--gold)
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 1.5rem auto 0;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, .06);
      display: flex;
      justify-content: space-between;
      font-size: .72rem;
      flex-wrap: wrap;
      gap: .5rem
    }

    /* WHATSAPP FLOAT */
    .wa-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: .5rem
    }

    .wa-tip {
      background: var(--dark);
      color: var(--white);
      font-size: .72rem;
      padding: 6px 12px;
      border-radius: 20px;
      opacity: 0;
      transform: translateX(6px);
      transition: all .25s;
      pointer-events: none;
      white-space: nowrap
    }

    .wa-float:hover .wa-tip {
      opacity: 1;
      transform: translateX(0)
    }

    .wa-circle {
      width: 54px;
      height: 54px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
      cursor: pointer;
      position: relative
    }

    .wa-circle svg {
      width: 26px;
      height: 26px;
      fill: white
    }

    .wa-pulse {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: #25D366;
      animation: pulse 2.2s infinite;
      opacity: 0
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: .55
      }

      100% {
        transform: scale(1.75);
        opacity: 0
      }
    }

    /* FADE */
    .fu {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .65s ease, transform .65s ease
    }

    .fu.vis {
      opacity: 1;
      transform: translateY(0)
    }

    /* MOBILE */
    @media(max-width:900px) {

      .nav-links,
      .nav-cta {
        display: none
      }

      .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem
      }

      .about-badge {
        right: .5rem;
        bottom: -.8rem
      }

      .port-grid {
        grid-template-columns: 1fr 1fr
      }

      .p-card.tall {
        grid-row: auto
      }

      .films-grid,
      .why-grid,
      .testi-grid,
      .pkg-grid,
      .steps {
        grid-template-columns: 1fr
      }

      .steps::before {
        display: none
      }

      .insta-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .form-inner {
        grid-template-columns: 1fr;
        gap: 3rem
      }

      .form-row {
        grid-template-columns: 1fr
      }

      .footer-inner {
        flex-direction: column;
        text-align: center
      }

      .footer-bottom {
        flex-direction: column;
        align-items: center
      }
    }
